A new shade of Black (#11362)

This commit is contained in:
Alex Waygood
2024-02-05 00:38:55 +00:00
committed by GitHub
parent 7a6a749449
commit c49c84f319
76 changed files with 190 additions and 106 deletions

View File

@@ -37,9 +37,11 @@ class Config: # should inherit from alembic.config.Config which is not possible
stdout: SupportsWrite[str] = sys.stdout,
cmd_opts: Namespace | None = None,
config_args: SupportsKeysAndGetItem[str, _AlembicConfigValue] | Iterable[tuple[str, _AlembicConfigValue]] = ...,
attributes: SupportsKeysAndGetItem[_AlembicConfigValue, _AlembicConfigValue]
| Iterable[tuple[_AlembicConfigValue, _AlembicConfigValue]]
| None = None,
attributes: (
SupportsKeysAndGetItem[_AlembicConfigValue, _AlembicConfigValue]
| Iterable[tuple[_AlembicConfigValue, _AlembicConfigValue]]
| None
) = None,
*,
template_directory: str | None = None,
) -> None: ...