summaryrefslogtreecommitdiff
path: root/alembic/op.pyi
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2023-05-17 15:15:05 +0000
committerGerrit Code Review <gerrit@bbpush.zzzcomputing.com>2023-05-17 15:15:05 +0000
commit490f540bc93466c86dad10a4fda3787964b53f4e (patch)
tree8113374a747152b7091964bbed2851f55c54ce6e /alembic/op.pyi
parentfaac9955671f1b7acac6f31b962df2c7e4a4ab7b (diff)
parent6ad07e26f8b8fc3da931ea572547bb6f2643e088 (diff)
downloadalembic-490f540bc93466c86dad10a4fda3787964b53f4e.tar.gz
Merge "Define type for generic classes" into main
Diffstat (limited to 'alembic/op.pyi')
-rw-r--r--alembic/op.pyi2
1 files changed, 1 insertions, 1 deletions
diff --git a/alembic/op.pyi b/alembic/op.pyi
index 931f1bb..c62ffc3 100644
--- a/alembic/op.pyi
+++ b/alembic/op.pyi
@@ -45,7 +45,7 @@ _T = TypeVar("_T")
### end imports ###
def add_column(
- table_name: str, column: Column, *, schema: Optional[str] = None
+ table_name: str, column: Column[Any], *, schema: Optional[str] = None
) -> None:
"""Issue an "add column" instruction using the current
migration context.