Skip to content

Commit f6fdcd0

Browse files
committed
fix type annotation
1 parent 3c1d633 commit f6fdcd0

File tree

1 file changed

+1
-1
lines changed
  • simple_ddl_parser/dialects

1 file changed

+1
-1
lines changed

simple_ddl_parser/dialects/sql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
class AfterColumns:
1212
@staticmethod
13-
def _parse_range_bucket(data: list[str]) -> Tuple[List[str], List[str]]:
13+
def _parse_range_bucket(data: List[str]) -> Tuple[List[str], List[str]]:
1414
range = None
1515

1616
if len(data) == 3:

0 commit comments

Comments
 (0)