Skip to content

Commit a3b215d

Browse files
authored
Remove AbstractType (#1053)
1 parent e90aa1b commit a3b215d

File tree

6 files changed

+0
-102
lines changed

6 files changed

+0
-102
lines changed

docs/types/abstracttypes.rst

Lines changed: 0 additions & 43 deletions
This file was deleted.

docs/types/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,3 @@ Types Reference
1515
interfaces
1616
unions
1717
mutations
18-
abstracttypes

graphene/__init__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from .pyutils.version import get_version
22

33
from .types import (
4-
AbstractType,
54
ObjectType,
65
InputObjectType,
76
Interface,
@@ -86,6 +85,4 @@
8685
"lazy_import",
8786
"Context",
8887
"ResolveInfo",
89-
# Deprecated
90-
"AbstractType",
9188
]

graphene/types/__init__.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@
2020
from .union import Union
2121
from .context import Context
2222

23-
# Deprecated
24-
from .abstracttype import AbstractType
25-
2623

2724
__all__ = [
2825
"ObjectType",
@@ -52,6 +49,4 @@
5249
"Union",
5350
"Context",
5451
"ResolveInfo",
55-
# Deprecated
56-
"AbstractType",
5752
]

graphene/types/abstracttype.py

Lines changed: 0 additions & 11 deletions
This file was deleted.

graphene/types/tests/test_abstracttype.py

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)