Skip to content

Commit e9041ec

Browse files
adamtheturtleclaude
andcommitted
Remove transport re-exports from vws.__init__
Users should import transports from vws.transports directly. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 92459c6 commit e9041ec

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,8 @@ ignore_path = [
358358
# Ideally we would limit the paths to the source code where we want to ignore names,
359359
# but Vulture does not enable this.
360360
ignore_names = [
361+
# Public API classes imported by users from vws.transports
362+
"HTTPXTransport",
361363
# pytest configuration
362364
"pytest_collect_file",
363365
"pytest_collection_modifyitems",

src/vws/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
"""A library for Vuforia Web Services."""
22

33
from .query import CloudRecoService
4-
from .transports import HTTPXTransport, RequestsTransport, Transport
54
from .vumark_service import VuMarkService
65
from .vws import VWS
76

87
__all__ = [
98
"VWS",
109
"CloudRecoService",
11-
"HTTPXTransport",
12-
"RequestsTransport",
13-
"Transport",
1410
"VuMarkService",
1511
]

0 commit comments

Comments
 (0)