Skip to content

Commit 72dd9b1

Browse files
committed
Stop shadowing Python builtin "types"
1 parent 91d7fff commit 72dd9b1

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

src/vws/exceptions/base_exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from beartype import beartype
77

8-
from vws.types import Response
8+
from vws.response import Response
99

1010

1111
@beartype

src/vws/exceptions/custom_exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
from beartype import beartype
88

9-
from vws.types import Response
9+
from vws.response import Response
1010

1111

1212
@beartype

src/vws/query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
)
2828
from vws.include_target_data import CloudRecoIncludeTargetData
2929
from vws.reports import QueryResult, TargetData
30-
from vws.types import Response
30+
from vws.response import Response
3131

3232
_ImageType = io.BytesIO | BinaryIO
3333

File renamed without changes.

src/vws/vws.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
TargetStatuses,
4747
TargetSummaryReport,
4848
)
49-
from vws.types import Response
49+
from vws.response import Response
5050

5151
_ImageType = io.BytesIO | BinaryIO
5252

0 commit comments

Comments
 (0)