From a6f8ce4119415fe3040a91d40e90ea0907bfca6c Mon Sep 17 00:00:00 2001 From: "Kasper Fuglsang Christensen (Delegate)" Date: Thu, 20 Mar 2025 13:40:18 +0100 Subject: [PATCH] fix: dont use type annotation from python 3.9 --- functions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions.py b/functions.py index 63db161..b65c261 100644 --- a/functions.py +++ b/functions.py @@ -152,7 +152,7 @@ def new_project( mr_base_url: str, tree_calcs: list = list(), hidden:list = list(), - raw_matrices: list[str] = list(), + raw_matrices: list = list(), public: bool=False, verify: bool=True ): @@ -187,7 +187,7 @@ def new_project_2( mr_base_url: str, tree_calcs: list = list(), hidden:list = list(), - raw_matrices: list[str] = list(), + raw_matrices: list = list(), public: bool=False, verify: bool=True ):