Skip to content

Commit 67ee4bb

Browse files
committed
Get rid of type: ignores
1 parent 2ba340c commit 67ee4bb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

temporalio/api/cloud/cloudservice/v1/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@
194194

195195
# gRPC is optional
196196
try:
197-
import grpc # noqa # type: ignore
197+
import grpc # noqa: F401
198198

199199
from .service_pb2_grpc import ( # noqa: F401
200200
CloudServiceServicer,

temporalio/api/operatorservice/v1/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656

5757
# gRPC is optional
5858
try:
59-
import grpc # noqa # type: ignore
59+
import grpc # noqa: F401
6060

6161
from .service_pb2_grpc import ( # noqa: F401
6262
OperatorServiceServicer,

temporalio/api/testservice/v1/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# gRPC is optional
2424
try:
25-
import grpc # noqa # type: ignore
25+
import grpc # noqa: F401
2626

2727
from .service_pb2_grpc import ( # noqa: F401
2828
TestServiceServicer,

temporalio/api/workflowservice/v1/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@
278278

279279
# gRPC is optional
280280
try:
281-
import grpc # noqa # type: ignore
281+
import grpc # noqa: F401
282282

283283
from .service_pb2_grpc import ( # noqa: F401
284284
WorkflowServiceServicer,

0 commit comments

Comments
 (0)