From 7b7f55c6eff6a30c30c57cc6ba10d1d9af875bce Mon Sep 17 00:00:00 2001 From: Azalea <22280294+hykilpikonna@users.noreply.github.com> Date: Mon, 8 Sep 2025 13:46:17 +0900 Subject: [PATCH] [O] --- formtool/__main__.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/formtool/__main__.py b/formtool/__main__.py index 614d24e..53af82a 100644 --- a/formtool/__main__.py +++ b/formtool/__main__.py @@ -1,7 +1,6 @@ -from subprocess import check_call -from pathlib import Path import argparse -import sys +from pathlib import Path +from subprocess import check_call from hypy_utils import printc @@ -14,7 +13,7 @@ def main(): # Process each file provided on the command line for inf in args.files: - inf: Path = Path(inf) + inf = Path(inf) if not inf.exists(): printc(f"&cError: File not found, skipping: {inf}")