chore: fix reported linter issues

This commit is contained in:
2025-12-03 06:48:12 +01:00
parent 00000060e4
commit 0000007071
2 changed files with 2 additions and 3 deletions

View File

@@ -62,7 +62,8 @@ def run_day(year: int, day: int, input_data: str, path_base: pathlib.Path) -> No
spec.loader.exec_module(solution_module)
except (ModuleNotFoundError, exceptions.AocError) as e:
raise exceptions.AocError(
f"solution module for {year}/{day:02} not found: run 'python main.py create --year {year} {day}'"
f"solution module for {year}/{day:02} not found: "
f"run 'python main.py create --year {year} {day}'"
) from e
p_1 = getattr(solution_module, "part_1", None)

View File

@@ -10,8 +10,6 @@ select = [
'UP', # pyupgrade
'B', # flake8-bugbear
'C', # flake8-comprehensions
'DTZ', # flake8-datetimez
'DJ', # flake8-django
'RUF', # ruff
'N', # pep8-naming
]