]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix
authorKai Mueller <15907922+kasium@users.noreply.github.com>
Tue, 30 Nov 2021 15:19:33 +0000 (15:19 +0000)
committerKai Mueller <15907922+kasium@users.noreply.github.com>
Tue, 30 Nov 2021 15:19:33 +0000 (15:19 +0000)
test/orm/declarative/test_typing_py3k.py

index 96629f58abebed83189e1d54d2b32e208712307c..7778e7c0fefac433f1ff63917184260a31333fa6 100644 (file)
@@ -1,10 +1,14 @@
-from typing import TypeVar, Generic, Type
-from sqlalchemy import Column, Integer
+from typing import Generic
+from typing import Type
+from typing import TypeVar
+
+from sqlalchemy import Column
+from sqlalchemy import Integer
 from sqlalchemy.orm import as_declarative
 
 
 def test_class_getitem():
-    T = TypeVar("T", bound="CommonBase")
+    T = TypeVar("T", bound="CommonBase")  # noqa
 
     class CommonBase(Generic[T]):
         @classmethod