Skip to content

Commit 02e69e3

Browse files
committed
Cleanup
1 parent 4d0dfb9 commit 02e69e3

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ reportUnnecessaryTypeIgnoreComment = "none"
199199
reportUnusedCallResult = "none"
200200
include = ["temporalio", "tests"]
201201
exclude = [
202+
# Exclude auto generated files
202203
"temporalio/api",
203204
"temporalio/bridge/proto",
204205
"tests/worker/workflow_sandbox/testmodules/proto",

tests/test_service.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,6 @@ def unary_unary(self, method, request_serializer, response_deserializer): # typ
130130
CallCollectingChannel.__abstractmethods__ = set() # type: ignore[reportAttributeAccessIssue]
131131

132132

133-
134-
135133
def test_version():
136134
# Extract version from pyproject.toml
137135
with open(

tests/worker/test_activity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
import pytest
2121

2222
import temporalio.api.common.v1
23-
import temporalio.exceptions
2423
import temporalio.api.workflowservice.v1
24+
import temporalio.exceptions
2525
from temporalio import activity, workflow
2626
from temporalio.client import (
2727
AsyncActivityHandle,

0 commit comments

Comments
 (0)