Skip to content

Commit ef912af

Browse files
committed
Add type annotation
1 parent f09258e commit ef912af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tools/cases_generator/generators_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def root_relative_path(filename: str) -> str:
2525
return filename
2626

2727

28-
def type_and_null(var: StackItem):
28+
def type_and_null(var: StackItem) -> Tuple[str, str]:
2929
if var.type:
3030
return var.type, "NULL"
3131
elif var.is_array():

0 commit comments

Comments
 (0)