Skip to content

Commit

Permalink
fix type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
xnuinside committed May 11, 2024
1 parent 3c1d633 commit f6fdcd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion simple_ddl_parser/dialects/sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class AfterColumns:
@staticmethod
def _parse_range_bucket(data: list[str]) -> Tuple[List[str], List[str]]:
def _parse_range_bucket(data: List[str]) -> Tuple[List[str], List[str]]:
range = None

if len(data) == 3:
Expand Down

0 comments on commit f6fdcd0

Please sign in to comment.