fix type error for now

This commit is contained in:
Justus Kuhlmann 2026-03-20 15:58:33 +01:00
commit 4853c0e414
Signed by: jkuhl
GPG key ID: 00ED992DD79B85A6

View file

@ -12,7 +12,7 @@ import shutil
from typing import Any from typing import Any
def write_measurement(path: str, ensemble: str, measurement: dict[str, dict[str, dict[str, Any]]], uuid: str, code: str, parameter_file: str) -> None: def write_measurement(path: str, ensemble: str, measurement: dict[str, dict[str, dict[str, Any]]], uuid: str, code: str, parameter_file: Union(Any, None)) -> None:
""" """
Write a measurement to the backlog. Write a measurement to the backlog.
If the file for the measurement already exists, update the measurement. If the file for the measurement already exists, update the measurement.