From: Nathan Louie Date: Tue, 8 Nov 2022 06:52:22 +0000 (-0800) Subject: update return type to None X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=090b594132a88e6b2abe9fe5edcf82bb814e7f45;p=thirdparty%2Fsqlalchemy%2Falembic.git update return type to None --- diff --git a/alembic/command.py b/alembic/command.py index 88259bd7..76db9b00 100644 --- a/alembic/command.py +++ b/alembic/command.py @@ -244,7 +244,7 @@ def revision( def check( config: "Config", -) -> Union[Optional["Script"], List[Optional["Script"]]]: +) -> None: """Checks if the revision command with autogenerate has pending upgrade ops to run. :param config: a :class:`.Config` object.