We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbc2ee4 commit a96ed55Copy full SHA for a96ed55
graphene/types/abstracttype.py
@@ -7,6 +7,6 @@ class AbstractType(SubclassWithMeta):
7
def __init_subclass__(cls, *args, **kwargs):
8
warn_deprecation(
9
"Abstract type is deprecated, please use normal object inheritance instead.\n"
10
- "See more: https://github.com/graphql-python/graphene/blob/v2.0.0/UPGRADE-v2.0.md#deprecations"
+ "See more: https://github.com/graphql-python/graphene/blob/master/UPGRADE-v2.0.md#deprecations"
11
)
12
super(AbstractType, cls).__init_subclass__(*args, **kwargs)
0 commit comments