diff options
| author | Zoltan Szabatin <[email protected]> | 2025-03-01 04:06:54 -0800 |
|---|---|---|
| committer | Zoltan Szabatin <[email protected]> | 2025-03-01 04:06:54 -0800 |
| commit | e2629e5cacd69f76c28db681265a12e1da366e46 (patch) | |
| tree | 37dcd957781ff9109b124fe423b83772f851e66c /src/splitscreen_duo/__init__.py | |
| parent | chore(justfile): Add formatting task (diff) | |
| download | splitscreen-duo-e2629e5cacd69f76c28db681265a12e1da366e46.tar.xz splitscreen-duo-e2629e5cacd69f76c28db681265a12e1da366e46.zip | |
style(src): Format files
Diffstat (limited to 'src/splitscreen_duo/__init__.py')
| -rw-r--r-- | src/splitscreen_duo/__init__.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/splitscreen_duo/__init__.py b/src/splitscreen_duo/__init__.py index 84c86f9..aa0aeda 100644 --- a/src/splitscreen_duo/__init__.py +++ b/src/splitscreen_duo/__init__.py @@ -8,9 +8,7 @@ logger = logging.getLogger(__name__) def main() -> int: logging.basicConfig( - level=( - logging.DEBUG if os.getenv("DEVELOPMENT", "").lower() else logging.INFO - ) + level=(logging.DEBUG if os.getenv("DEVELOPMENT", "").lower() else logging.INFO) ) print("The Dual Screen Console") logger.info(f"Running as {os.getenv("INSTANCE", "unknown")}") |