Skip to content

Commit

Permalink
Add type ignores
Browse files Browse the repository at this point in the history
Signed-off-by: Elena Kolevska <[email protected]>
  • Loading branch information
elena-kolevska committed Jan 15, 2024
1 parent ed81fbd commit 843bcc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dapr/clients/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"""

from typing import Optional
from grpc import RpcError
from grpc import RpcError # type: ignore
from grpc_status import rpc_status # type: ignore
from google.rpc import error_details_pb2
from google.rpc import error_details_pb2 # type: ignore

ERROR_CODE_UNKNOWN = "UNKNOWN"
ERROR_CODE_DOES_NOT_EXIST = "ERR_DOES_NOT_EXIST"
Expand Down

0 comments on commit 843bcc0

Please sign in to comment.