fix typo in type annotations
This commit is contained in:
parent
7ce9742ed5
commit
d302ae7e0d
1 changed files with 1 additions and 1 deletions
|
|
@ -12,7 +12,7 @@ import shutil
|
|||
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: Union(Any, None)) -> 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.
|
||||
If the file for the measurement already exists, update the measurement.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue