From 8aae1e0e85ceafe6a3481c7f62b0cfcf24e7f6e3 Mon Sep 17 00:00:00 2001 From: joergbuchwald Date: Fri, 23 Aug 2024 13:44:50 +0200 Subject: [PATCH] dict[str, str] -> dict --- ogs6py/classes/build_tree.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ogs6py/classes/build_tree.py b/ogs6py/classes/build_tree.py index 83d4b36..4e3fc91 100644 --- a/ogs6py/classes/build_tree.py +++ b/ogs6py/classes/build_tree.py @@ -22,7 +22,7 @@ def _get_root(self) -> ET.Element: return self.tree.getroot() @classmethod - def _convertargs(cls, args: dict[str, str]) -> None: + def _convertargs(cls, args: dict) -> None: """ convert arguments that are not lists or dictionaries to strings """