Skip to content

Commit 1b8d9e1

Browse files
committed
run formatter
1 parent 7a51529 commit 1b8d9e1

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

tests/contrib/test_opentelemetry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
from temporalio.exceptions import ApplicationError, ApplicationErrorCategory
2424
from temporalio.testing import WorkflowEnvironment
2525
from temporalio.worker import UnsandboxedWorkflowRunner, Worker
26+
from tests.helpers import LogCapturer
2627
from tests.helpers.cache_evitction import (
2728
CacheEvictionTearDownWorkflow,
2829
WaitForeverWorkflow,
2930
wait_forever_activity,
3031
)
31-
from tests.helpers import LogCapturer
3232

3333
# Passing through because Python 3.9 has an import bug at
3434
# https://github.com/python/cpython/issues/91351

tests/helpers/cache_evitction.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import asyncio
22
from datetime import timedelta
3+
34
from temporalio import activity, workflow
45

56

tests/worker/test_workflow.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@
130130
)
131131
from tests import DEV_SERVER_DOWNLOAD_VERSION
132132
from tests.helpers import (
133+
LogCapturer,
133134
admitted_update_task,
134135
assert_eq_eventually,
135136
assert_eventually,
@@ -143,17 +144,16 @@
143144
pause_and_assert,
144145
unpause_and_assert,
145146
workflow_update_exists,
146-
LogCapturer,
147-
)
148-
from tests.helpers.external_stack_trace import (
149-
ExternalStackTraceWorkflow,
150-
external_wait_cancel,
151147
)
152148
from tests.helpers.cache_evitction import (
153149
CacheEvictionTearDownWorkflow,
154150
WaitForeverWorkflow,
155151
wait_forever_activity,
156152
)
153+
from tests.helpers.external_stack_trace import (
154+
ExternalStackTraceWorkflow,
155+
external_wait_cancel,
156+
)
157157

158158
# Passing through because Python 3.9 has an import bug at
159159
# https://github.com/python/cpython/issues/91351

0 commit comments

Comments
 (0)