From: Kevin Kirsche Date: Fri, 20 Sep 2024 14:34:11 +0000 (-0400) Subject: fix: black formatting X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a7719ff96c754af2575c5385c8d4fa4d5492113;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix: black formatting --- diff --git a/lib/sqlalchemy/ext/compiler.py b/lib/sqlalchemy/ext/compiler.py index 817f3b460a..3a1b7e9afd 100644 --- a/lib/sqlalchemy/ext/compiler.py +++ b/lib/sqlalchemy/ext/compiler.py @@ -455,8 +455,10 @@ Example usage:: from __future__ import annotations from typing import Any + # 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