fix: resolve ruff lint errors in scheduler and tests

- scheduler.py: sort import block (I001)
- tests/test_config.py: remove unused os, pytest imports (F401)
- tests/test_upload_tracker.py: remove unused json, os, tempfile imports (F401)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-12 02:11:16 +00:00
co-authored by Claude Sonnet 4.6
parent c3bf81d490
commit 4b6bce9b74
3 changed files with 4 additions and 9 deletions
-2
View File
@@ -1,8 +1,6 @@
"""Smoke tests for configuration loading."""
import os
import pytest
def test_config_loads_defaults(monkeypatch):