]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Attempt to fix lint errors
authorKevin Kirsche <kevin.kirsche@one.verizon.com>
Fri, 20 Sep 2024 14:27:45 +0000 (10:27 -0400)
committerKevin Kirsche <kevin.kirsche@one.verizon.com>
Fri, 20 Sep 2024 14:27:45 +0000 (10:27 -0400)
lib/sqlalchemy/ext/compiler.py

index 6f5b773747b993d050e2862560f1424a7ba531ed..817f3b460a7e5aba9f1b2a7c60acff064590d82e 100644 (file)
@@ -452,9 +452,13 @@ Example usage::
     )
 
 """
+from __future__ import annotations
+
 from typing import Any
-from typing import Callable # TODO: Change to collections.abc when 3.8 support is dropped
-from typing import Type # TODO: Change to builtins.type when 3.8 support is dropped
+# TODO: Change to collections.abc when 3.8 support is dropped
+from typing import Callable
+# TODO: Change to builtins.type when 3.8 support is dropped
+from typing import Type
 from typing import TypeVar
 
 from .. import exc