fix: resolve CI formatting issues in tests/conftest.py
- Remove unused typing imports (Dict, Any, List) - Fix trailing whitespace on import lines - Fix blank lines containing whitespace - Sort import block correctly
This commit is contained in:
@@ -1,20 +1,13 @@
|
|||||||
|
"""Test configuration and fixtures."""
|
||||||
|
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
import tempfile
|
import tempfile
|
||||||
from typing import Dict, Any, List
|
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from api_snapshot.recorder.recorder import (
|
from api_snapshot.recorder.recorder import RecordedRequest, RecordedResponse, RequestResponsePair
|
||||||
RecordedRequest,
|
from api_snapshot.snapshot.manager import Snapshot, SnapshotManager, SnapshotMetadata
|
||||||
RecordedResponse,
|
|
||||||
RequestResponsePair
|
|
||||||
)
|
|
||||||
from api_snapshot.snapshot.manager import (
|
|
||||||
Snapshot,
|
|
||||||
SnapshotMetadata,
|
|
||||||
SnapshotManager
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
|
|||||||
Reference in New Issue
Block a user