From: Kevin Kirsche Date: Fri, 20 Sep 2024 14:27:45 +0000 (-0400) Subject: Attempt to fix lint errors X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=35cc6a1077a22bd704b87228950a6cca52c04db4;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Attempt to fix lint errors --- diff --git a/lib/sqlalchemy/ext/compiler.py b/lib/sqlalchemy/ext/compiler.py index 6f5b773747..817f3b460a 100644 --- a/lib/sqlalchemy/ext/compiler.py +++ b/lib/sqlalchemy/ext/compiler.py @@ -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