Skip to content

Commit a0afe0e

Browse files
committed
Fix flake8 type linting
1 parent 6e79d33 commit a0afe0e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graphene_sqlalchemy/types.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ def construct_fields(model, registry, only_fields, exclude_fields):
8080

8181

8282
class SQLAlchemyObjectTypeOptions(ObjectTypeOptions):
83-
model = None # type: Model
83+
model = None # type: object
8484
registry = None # type: Registry
85-
connection = None # type: Type[Connection]
85+
connection = None # type: Connection
8686
id = None # type: str
8787

8888

0 commit comments

Comments
 (0)