Skip to content

Commit 8441397

Browse files
committed
spelling: classes
1 parent d98a5fe commit 8441397

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpython/simpleeval.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ def evaluate_current_attribute(cursor_offset, line, namespace=None):
240240

241241

242242
def safe_get_attribute(obj, attr):
243-
"""Gets attributes without triggering descriptors on new-style clases"""
243+
"""Gets attributes without triggering descriptors on new-style classes"""
244244
if is_new_style(obj):
245245
with AttrCleaner(obj):
246246
result = safe_get_attribute_new_style(obj, attr)

0 commit comments

Comments
 (0)