From 35cc6a1077a22bd704b87228950a6cca52c04db4 Mon Sep 17 00:00:00 2001 From: Kevin Kirsche Date: Fri, 20 Sep 2024 10:27:45 -0400 Subject: [PATCH] Attempt to fix lint errors --- lib/sqlalchemy/ext/compiler.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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 -- 2.47.3