Skip to content

Commit f337bc6

Browse files
committed
Fix annotations for older versions of Python
1 parent a5f1dd7 commit f337bc6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

singlestoredb/functions/signature.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -951,7 +951,7 @@ def get_schema(
951951

952952
# Multiple return values
953953
elif inspect.isclass(typing.get_origin(spec)) \
954-
and issubclass(typing.get_origin(spec), tuple):
954+
and issubclass(typing.get_origin(spec), tuple): # type: ignore[arg-type]
955955

956956
out_names, out_overrides = [], []
957957

0 commit comments

Comments
 (0)