From dcbf444872b81248ce958f05d47abad6e8a237a7 Mon Sep 17 00:00:00 2001 From: robot-piglet Date: Wed, 18 Dec 2024 11:04:10 +0300 Subject: Intermediate changes commit_hash:1f2ebe313aea1039145a9d68dcd511d5f22f383a --- contrib/python/ipython/py3/IPython/utils/dir2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'contrib/python/ipython/py3/IPython/utils/dir2.py') diff --git a/contrib/python/ipython/py3/IPython/utils/dir2.py b/contrib/python/ipython/py3/IPython/utils/dir2.py index 9f19b2dd84f..5dc699a92d4 100644 --- a/contrib/python/ipython/py3/IPython/utils/dir2.py +++ b/contrib/python/ipython/py3/IPython/utils/dir2.py @@ -41,7 +41,7 @@ def dir2(obj): # TypeError: dir(obj) does not return a list words = set() - if safe_hasattr(obj, '__class__'): + if safe_hasattr(obj, "__class__"): words |= set(dir(obj.__class__)) # filter out non-string attributes which may be stuffed by dir() calls @@ -62,7 +62,7 @@ def get_real_method(obj, name): Returns the method or None. """ try: - canary = getattr(obj, '_ipython_canary_method_should_not_exist_', None) + canary = getattr(obj, "_ipython_canary_method_should_not_exist_", None) except Exception: return None -- cgit v1.3