Skip to content

Commit a6f8ce4

Browse files
committed
fix: dont use type annotation from python 3.9
1 parent cf7cdd7 commit a6f8ce4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

functions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def new_project(
152152
mr_base_url: str,
153153
tree_calcs: list = list(),
154154
hidden:list = list(),
155-
raw_matrices: list[str] = list(),
155+
raw_matrices: list = list(),
156156
public: bool=False,
157157
verify: bool=True
158158
):
@@ -187,7 +187,7 @@ def new_project_2(
187187
mr_base_url: str,
188188
tree_calcs: list = list(),
189189
hidden:list = list(),
190-
raw_matrices: list[str] = list(),
190+
raw_matrices: list = list(),
191191
public: bool=False,
192192
verify: bool=True
193193
):

0 commit comments

Comments
 (0)