lint: remove unused typing import; mark test pytest import as noqa F401
All checks were successful
CI / Lint, test, and build (push) Successful in 48s

This commit is contained in:
ngxstat-bot 2025-08-16 05:19:48 -05:00
commit 176359d010
2 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@ from __future__ import annotations
import sqlite3
from pathlib import Path
from typing import Dict, List, Optional, Set
from typing import List, Optional, Set
from datetime import datetime, timedelta
import json

View file

@ -3,7 +3,7 @@ import json
import sqlite3
from pathlib import Path
import pytest
import pytest # noqa: F401
REPO_ROOT = Path(__file__).resolve().parents[1]
sys.path.append(str(REPO_ROOT))