Skip to content

Commit

Permalink
type ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
irusland committed Jan 23, 2022
1 parent eca9bcb commit 37060ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tinkoff/invest/_grpc_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def __init__(self, channel: grpc.Channel, metadata: Headers):
self.metadata = metadata


class StorageService(Generic[TItemId, TItem], Service):
class StorageService(Generic[TItemId, TItem], Service): # type: ignore
_stub_factory: Any

def __init__(
Expand Down
2 changes: 1 addition & 1 deletion tinkoff/invest/services/orders_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def get_orders(self, *, account_id: str = "") -> GetOrdersResponse:
...


class OrdersService(StorageService[str, OrderState], IOrderService):
class OrdersService(StorageService[str, OrderState], IOrderService): # type: ignore
_stub_factory = orders_pb2_grpc.OrdersServiceStub

@handle_request_error("PostOrder")
Expand Down

0 comments on commit 37060ea

Please sign in to comment.