Skip to content

Commit e3beb68

Browse files
committed
Refactor vector/scalar in, vector/scalar out UDF function wrappers
1 parent 84ae340 commit e3beb68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

singlestoredb/functions/ext/asgi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@
6464
from typing import Union
6565

6666
try:
67-
from typing import TypeAlias
67+
from typing import TypeAlias # type: ignore
6868
except ImportError:
69-
from typing_extensions import TypeAlias
69+
from typing_extensions import TypeAlias # type: ignore
7070

7171
from . import arrow
7272
from . import json as jdata

0 commit comments

Comments
 (0)