From 65be8023257c52ccf669b5bfb0f95bdece6457f3 Mon Sep 17 00:00:00 2001 From: Justus Kuhlmann Date: Thu, 17 Apr 2025 16:25:15 +0000 Subject: [PATCH] type fix --- corrlib/toml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/corrlib/toml.py b/corrlib/toml.py index 0004a4e..349d304 100644 --- a/corrlib/toml.py +++ b/corrlib/toml.py @@ -45,7 +45,7 @@ def check_measurement_data(measurements: dict, code: str) -> None: return -def import_tomls(path: str, files: str, copy_files: bool=True) -> None: +def import_tomls(path: str, files: list[str], copy_files: bool=True) -> None: for file in files: import_toml(path, file, copy_files)