From 5d97c848e00d71863c270ecc686597ec46e3a0b5 Mon Sep 17 00:00:00 2001 From: Christoph Zwerschke Date: Wed, 4 Mar 2020 12:44:53 +0100 Subject: [PATCH] Remove misleading comment The comment originally referred to the __metaclass__ attribute which is gone now. --- graphene/utils/subclass_with_meta.py | 1 - 1 file changed, 1 deletion(-) diff --git a/graphene/utils/subclass_with_meta.py b/graphene/utils/subclass_with_meta.py index c6ba2d3f..09f08a88 100644 --- a/graphene/utils/subclass_with_meta.py +++ b/graphene/utils/subclass_with_meta.py @@ -19,7 +19,6 @@ class SubclassWithMeta_Meta(InitSubclassMeta): class SubclassWithMeta(metaclass=SubclassWithMeta_Meta): """This class improves __init_subclass__ to receive automatically the options from meta""" - # We will only have the metaclass in Python 2 def __init_subclass__(cls, **meta_options): """This method just terminates the super() chain""" _Meta = getattr(cls, "Meta", None)