BTHLABS-0000: Code cleanup ;)

This commit is contained in:
Tomek Wójcik 2025-08-20 21:37:31 +02:00
parent b4338e2769
commit f7a4e16d03
3 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ addopts = --disable-warnings
django_debug_mode = keep django_debug_mode = keep
[isort] [isort]
known_first_party=hotpocket_backend,hotpocket_backend_testing,hotpocket_common,hotpocket_soa,hotpocket_testing known_first_party=hotpocket_backend,hotpocket_backend_testing,hotpocket_common,hotpocket_soa,hotpocket_testing,hotpocket_workspace_tools
multi_line_output=3 multi_line_output=3
include_trailing_comma=true include_trailing_comma=true
force_sort_within_sections=true force_sort_within_sections=true

View File

@ -9,7 +9,7 @@ import os
from invoke import task from invoke import task
from invoke.exceptions import UnexpectedExit from invoke.exceptions import UnexpectedExit
from hotpocket_workspace_tools import get_workspace_mode, WorkspaceMode from hotpocket_workspace_tools import WorkspaceMode, get_workspace_mode
WORKSPACE_MODE = get_workspace_mode() WORKSPACE_MODE = get_workspace_mode()
ENV = os.getenv('HOTPOCKET_BACKEND_ENV', 'docker') ENV = os.getenv('HOTPOCKET_BACKEND_ENV', 'docker')

View File

@ -7,7 +7,7 @@ max-line-length = 119
hang-closing = False hang-closing = False
[isort] [isort]
known_first_party=hotpocket_backend,hotpocket_backend_testing,hotpocket_common,hotpocket_soa,hotpocket_testing known_first_party=hotpocket_backend,hotpocket_backend_testing,hotpocket_common,hotpocket_soa,hotpocket_testing,hotpocket_workspace_tools
multi_line_output=3 multi_line_output=3
include_trailing_comma=true include_trailing_comma=true
force_sort_within_sections=true force_sort_within_sections=true