Skip to content

Commit

Permalink
fix type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
xnuinside committed Jan 9, 2024
1 parent 8998016 commit 2630cb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion simple_ddl_parser/output/dialects.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ class Snowflake(Dialect):
}


def add_dialects(dialects: list[Dialect]) -> list[str]:
def add_dialects(dialects: List[Dialect]) -> List[str]:
return [dialect.__d_name__ for dialect in dialects]


Expand Down

0 comments on commit 2630cb8

Please sign in to comment.