Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/api-reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ API Reference
:undoc-members:
:members:

.. automodule:: vws.types
.. automodule:: vws.response
:undoc-members:
:members:
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ optional-dependencies.dev = [
"pytest==8.3.4",
"pytest-cov==6.0.0",
"pyyaml==6.0.2",
"ruff==0.8.6",
"ruff==0.9.1",
# We add shellcheck-py not only for shell scripts and shell code blocks,
# but also because having it installed means that ``actionlint-py`` will
# use it to lint shell commands in GitHub workflow files.
Expand Down
2 changes: 1 addition & 1 deletion src/vws/exceptions/base_exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from beartype import beartype

from vws.types import Response
from vws.response import Response


@beartype
Expand Down
2 changes: 1 addition & 1 deletion src/vws/exceptions/custom_exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from beartype import beartype

from vws.types import Response
from vws.response import Response


@beartype
Expand Down
2 changes: 1 addition & 1 deletion src/vws/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
)
from vws.include_target_data import CloudRecoIncludeTargetData
from vws.reports import QueryResult, TargetData
from vws.types import Response
from vws.response import Response

_ImageType = io.BytesIO | BinaryIO

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/vws/vws.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
TargetStatuses,
TargetSummaryReport,
)
from vws.types import Response
from vws.response import Response

_ImageType = io.BytesIO | BinaryIO

Expand Down
Loading