Skip to content

Commit

Permalink
Fix typecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
njooma committed Jul 8, 2024
1 parent db9498f commit 9ced5aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/viam/components/audio_input/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from datetime import timedelta
from io import BytesIO

from google.api.httpbody_pb2 import HttpBody
from google.api.httpbody_pb2 import HttpBody # type: ignore
from grpclib import GRPCError, Status
from grpclib.server import Stream

Expand Down
2 changes: 1 addition & 1 deletion src/viam/components/camera/service.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# TODO: Update type checking based with RSDK-4089
# pyright: reportGeneralTypeIssues=false
from google.api.httpbody_pb2 import HttpBody
from google.api.httpbody_pb2 import HttpBody # type: ignore
from grpclib.server import Stream

from viam.proto.common import DoCommandRequest, DoCommandResponse, GetGeometriesRequest, GetGeometriesResponse
Expand Down

0 comments on commit 9ced5aa

Please sign in to comment.