style(config): move log handle below import block

Code review follow-up on c9dd348 — the log = logging.getLogger(__name__)
assignment was interleaved between 'import X' and 'from X import Y'
statements. Move it below all imports per standard ordering.

No behavior change.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
adlee-was-taken
2026-04-05 11:48:37 -04:00
parent e568f20871
commit 17721eeaa7

View File

@@ -3,8 +3,6 @@
import logging import logging
import sys import sys
import tomllib import tomllib
log = logging.getLogger(__name__)
from pathlib import Path from pathlib import Path
from typing import Self from typing import Self
@@ -26,6 +24,8 @@ from vigilar.constants import (
CameraLocation, CameraLocation,
) )
log = logging.getLogger(__name__)
# --- Camera Config --- # --- Camera Config ---
class CameraConfig(BaseModel): class CameraConfig(BaseModel):