Skip to content
Snippets Groups Projects
Commit 6db8749c authored by Carsten Hinz's avatar Carsten Hinz
Browse files

changed list to explicit copy, which is not supported by python 3.10

parent 2645241b
No related branches found
No related tags found
No related merge requests found
......@@ -28,8 +28,7 @@ Variables = Enum("Variables", [*DATA_VARIABLES, *COORDINATE_VARIABLES])
TIME_FREQUENCIES = {"daily": "D", "monthly": "M", "yearly": "Y"} # TODO test
DATA_AGGREGATION_MODES = ["meanTSbyStation", "mergedTS", None]
DataAggregationModes = Literal[*DATA_AGGREGATION_MODES]
DataAggregationModes = Literal["meanTSbyStation", "mergedTS", None]
@dataclass
class TimeSample:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment