Skip to content

Commit ec10d59

Browse files
fix: match existing test import style (multi-line first-party imports)
1 parent 51bc365 commit ec10d59

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

reference/python/tests/test_chain_concurrency.py

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,19 @@
2121
from unittest.mock import AsyncMock
2222

2323
import pytest
24+
2425
from qp_capsule.capsule import Capsule, TriggerSection
25-
from qp_capsule.chain import CapsuleChain, _MAX_CHAIN_RETRIES, _is_integrity_error
26-
from qp_capsule.exceptions import CapsuleError, ChainConflictError, ChainError, StorageError
26+
from qp_capsule.chain import (
27+
CapsuleChain,
28+
_MAX_CHAIN_RETRIES,
29+
_is_integrity_error,
30+
)
31+
from qp_capsule.exceptions import (
32+
CapsuleError,
33+
ChainConflictError,
34+
ChainError,
35+
StorageError,
36+
)
2737

2838

2939
def _make_capsule(request: str = "test") -> Capsule:

0 commit comments

Comments
 (0)