Skip to content

Commit

Permalink
PR review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
jonoberheide committed Dec 9, 2024
1 parent 706d6e6 commit 13fdad7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion axis/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ async def main(
password: str,
params: bool,
events: bool,
audio: bool,
audio: str,
) -> None:
"""CLI method for library."""
LOGGER.info("Connecting to Axis device")
Expand Down
2 changes: 1 addition & 1 deletion axis/interfaces/vapix.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ async def request(
self,
method: str,
path: str,
timeout: int | type(httpx.Timeout),
timeout: int | httpx.Timeout, # noqa: ASYNC109
content: bytes | None = None,
data: dict[str, str] | None = None,
headers: dict[str, str] | None = None,
Expand Down

0 comments on commit 13fdad7

Please sign in to comment.