From bc1b4967948ea1a486fe37e5ce7d206363346854 Mon Sep 17 00:00:00 2001 From: Justus Kuhlmann Date: Tue, 7 Jul 2026 16:40:29 +0200 Subject: [PATCH] organize imports --- corrlib/toml.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/corrlib/toml.py b/corrlib/toml.py index 04c5b2e..df770de 100644 --- a/corrlib/toml.py +++ b/corrlib/toml.py @@ -19,14 +19,11 @@ import tomllib as toml from .input import openQCD, sfcf from .input.implementations import codes as known_codes from .main import import_project, update_aliases -from .meas_io import write_measurement, affected_files -import os -from .input.implementations import codes as known_codes -from typing import Any -from pathlib import Path +from .meas_io import affected_files, write_measurement from .tools import step_differences from .tracker import save + def replace_string(string: str, name: str, val: str) -> str: """ Replace a placeholder {name} with a value in a string.