File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff 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.
360360ignore_names = [
361+ # Public API classes imported by users from vws.transports
362+ " HTTPXTransport" ,
361363 # pytest configuration
362364 " pytest_collect_file" ,
363365 " pytest_collection_modifyitems" ,
Original file line number Diff line number Diff line change 11"""A library for Vuforia Web Services."""
22
33from .query import CloudRecoService
4- from .transports import HTTPXTransport , RequestsTransport , Transport
54from .vumark_service import VuMarkService
65from .vws import VWS
76
87__all__ = [
98 "VWS" ,
109 "CloudRecoService" ,
11- "HTTPXTransport" ,
12- "RequestsTransport" ,
13- "Transport" ,
1410 "VuMarkService" ,
1511]
You can’t perform that action at this time.
0 commit comments