Refactor code for improved readability and consistency
CI / lint-test-build (push) Failing after 12s

- Consolidated multiline string formatting into single-line for SQL queries in multiple files.
- Adjusted argument formatting in function calls for better alignment and readability.
- Removed unnecessary line breaks and improved spacing in various sections of the codebase.
- Updated test cases to maintain consistency in formatting and improve clarity.
This commit is contained in:
2026-06-04 19:04:30 +02:00
parent 7d18bdf316
commit c8e3daeb57
21 changed files with 377 additions and 383 deletions
+1 -3
View File
@@ -12,8 +12,6 @@ def test_template_directory_resolves_to_existing_location() -> None:
def test_template_exists_in_package_resources() -> None:
template_path = resources.files("arbitrade").joinpath(
"web", "templates", "dashboard.html"
)
template_path = resources.files("arbitrade").joinpath("web", "templates", "dashboard.html")
assert template_path.is_file()