Skip to content

Commit 48d333a

Browse files
committed
refactor: change typing for Python 3.8
JIRA: TRIVIAL risk: low
1 parent c36210d commit 48d333a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

gooddata-flight-server/gooddata_flight_server/flexfun/flex_fun_registry.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# (C) 2024 GoodData Corporation
22
import importlib
3-
from typing import Dict, Iterable, List, Type
3+
from typing import Dict, Iterable, List, Tuple, Type
44

55
import structlog
66

@@ -21,7 +21,7 @@ def __init__(self) -> None:
2121
self._loaded_modules: List[str] = []
2222

2323
@property
24-
def flex_funs_names(self) -> tuple[str, ...]:
24+
def flex_funs_names(self) -> Tuple[str, ...]:
2525
"""
2626
:return: names of available functions
2727
"""

0 commit comments

Comments
 (0)