Skip to content

Commit ac3d406

Browse files
Merge pull request #2518 from VWS-Python/dependabot/pip/ruff-0.9.1
Bump ruff from 0.8.6 to 0.9.1
2 parents 436df67 + cfa9a06 commit ac3d406

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

docs/source/api-reference.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ API Reference
1313
:undoc-members:
1414
:members:
1515

16-
.. automodule:: vws.types
16+
.. automodule:: vws.response
1717
:undoc-members:
1818
:members:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ optional-dependencies.dev = [
6262
"pytest==8.3.4",
6363
"pytest-cov==6.0.0",
6464
"pyyaml==6.0.2",
65-
"ruff==0.8.6",
65+
"ruff==0.9.1",
6666
# We add shellcheck-py not only for shell scripts and shell code blocks,
6767
# but also because having it installed means that ``actionlint-py`` will
6868
# use it to lint shell commands in GitHub workflow files.

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)