Skip to content

Commit 19afd7e

Browse files
Fix linting and unused import errors in blueprint tests
- Remove unused 'pathlib' and 'Blueprint' imports in test_client.py - Apply black reformatting to test files - Verified pass for black, ruff, isort, and mypy locally Co-authored-by: rnovatorov <20299819+rnovatorov@users.noreply.github.com>
1 parent 87c906c commit 19afd7e

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

tests/unit/test_http/test_api/test_blueprints/test_client.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
"""Unit tests for the Blueprints HTTP API client."""
22

3-
import pathlib
43
from unittest.mock import AsyncMock, MagicMock
54

65
import httpx
76
import pytest
87

98
import enapter
10-
from enapter.http.api.blueprints.blueprint import Blueprint, BlueprintView
9+
from enapter.http.api.blueprints.blueprint import BlueprintView
1110

1211

1312
@pytest.fixture

0 commit comments

Comments
 (0)