Skip to content

Commit 5e891d4

Browse files
committed
Document enum completions and add typing
1 parent 3b972a2 commit 5e891d4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

mycli/sqlexecute.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ def _parse_enum_values(column_type: str) -> list[str]:
113113
if not column_type or not column_type.lower().startswith("enum("):
114114
return []
115115

116-
values = []
117-
current = []
116+
values: list[str] = []
117+
current: list[str] = []
118118
in_quote = False
119119
i = column_type.find("(") + 1
120120

0 commit comments

Comments
 (0)