Skip to content

Commit 5d97c84

Browse files
committed
Remove misleading comment
The comment originally referred to the __metaclass__ attribute which is gone now.
1 parent 5e6f689 commit 5d97c84

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

graphene/utils/subclass_with_meta.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ def __repr__(cls):
1919
class SubclassWithMeta(metaclass=SubclassWithMeta_Meta):
2020
"""This class improves __init_subclass__ to receive automatically the options from meta"""
2121

22-
# We will only have the metaclass in Python 2
2322
def __init_subclass__(cls, **meta_options):
2423
"""This method just terminates the super() chain"""
2524
_Meta = getattr(cls, "Meta", None)

0 commit comments

Comments
 (0)