Skip to content

Commit 1faf2fe

Browse files
brianstrauchclaude
andcommitted
Fix ruff import order in strands mock model
ruff's `I001` rule groups `temporalio` with other third-party imports rather than its own block, which broke `poe lint` on CI. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent e4b4c0c commit 1faf2fe

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

tests/strands_plugin/_mock_model.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,10 @@
1111
from collections.abc import AsyncIterable
1212
from typing import Any
1313

14+
import temporalio.contrib.strands._plugin as _plugin_module
1415
from strands.models import Model
1516
from strands.types.streaming import StreamEvent
1617

17-
import temporalio.contrib.strands._plugin as _plugin_module
18-
1918

2019
class MockModel(Model):
2120
def __init__(self, responses: list[str | dict[str, Any]]) -> None:

0 commit comments

Comments
 (0)