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
+4 -4
View File
@@ -1,9 +1,9 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
import os
import sys
import subprocess
import time
import logging import logging
import os
import subprocess
import sys
import time
from pathlib import Path from pathlib import Path
try: try:
-2
View File
@@ -1,8 +1,6 @@
"""Smoke tests for configuration loading.""" """Smoke tests for configuration loading."""
import os
import pytest
def test_config_loads_defaults(monkeypatch): def test_config_loads_defaults(monkeypatch):
-3
View File
@@ -1,8 +1,5 @@
"""Tests for upload tracker — mark, filter, reset, and summary logic.""" """Tests for upload tracker — mark, filter, reset, and summary logic."""
import json
import os
import tempfile
import pytest import pytest