Skip to content

Commit e2ed3eb

Browse files
committed
Removed a test print line from is_dict_available.
1 parent e40e854 commit e2ed3eb

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

typed_descriptors/base.py

-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ def is_dict_available(cls: Any) -> bool:
4444
# - docs.python.org/3/reference/datamodel.html#object.__mro_entries__
4545
# - docs.python.org/3/library/types.html#types.get_original_bases
4646
bases = get_original_bases(cls)
47-
print(cls, bases)
4847
for base in bases:
4948
if is_dict_available(base):
5049
return True

0 commit comments

Comments
 (0)