Skip to content

Commit 17294d3

Browse files
committed
Fix indent
1 parent 9056fbc commit 17294d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/traceback.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1678,13 +1678,13 @@ def _check_for_nested_attribute(obj, wrong_name, attrs):
16781678
for attr_name in attrs_to_check:
16791679
with suppress(AttributeError):
16801680
attr_obj = inspect.getattr_static(obj, attr_name)
1681-
1681+
16821682
try:
16831683
inspect.getattr_static(attr_obj, '__get__')
16841684
continue # Descriptor, skip it as we can't access its contents safely
16851685
except AttributeError:
16861686
pass
1687-
1687+
16881688
# Skip lazy imports to avoid triggering module loading
16891689
if _is_lazy_import(obj, attr_name):
16901690
continue

0 commit comments

Comments
 (0)