Skip to content

Commit

Permalink
Removed a test print line from is_dict_available.
Browse files Browse the repository at this point in the history
  • Loading branch information
sg495 committed Mar 9, 2024
1 parent e40e854 commit e2ed3eb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion typed_descriptors/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ def is_dict_available(cls: Any) -> bool:
# - docs.python.org/3/reference/datamodel.html#object.__mro_entries__
# - docs.python.org/3/library/types.html#types.get_original_bases
bases = get_original_bases(cls)
print(cls, bases)
for base in bases:
if is_dict_available(base):
return True
Expand Down

0 comments on commit e2ed3eb

Please sign in to comment.