Adjusted files for isort & autopep

This commit is contained in:
creyD
2025-02-26 16:11:54 +00:00
committed by github-actions[bot]
parent b0f2815568
commit be260b0ee6

View File

@@ -17,6 +17,7 @@ def create_random_password(length: int = 12) -> str:
secrets.SystemRandom().shuffle(password)
return "".join(password)
def data_to_csv(file: Path, data: list) -> None:
with file.open(mode="w", newline="", encoding="utf-8") as f: