Skip to content

Commit 244f8ed

Browse files
fix: remaining lint issues (unused var, import grouping)
1 parent d84e4ec commit 244f8ed

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

reference/python/tests/test_chain_concurrency.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
from unittest.mock import AsyncMock
2222

2323
import pytest
24+
2425
from qp_capsule.capsule import Capsule, TriggerSection
2526
from qp_capsule.chain import CapsuleChain, _MAX_CHAIN_RETRIES, _is_integrity_error
2627
from qp_capsule.exceptions import CapsuleError, ChainConflictError, ChainError, StorageError
@@ -128,7 +129,7 @@ async def test_succeeds_after_one_retry(self, temp_seal):
128129
chain = CapsuleChain(mock_storage)
129130
capsule = _make_capsule("retry-once")
130131

131-
result = await chain.seal_and_store(capsule, seal=temp_seal)
132+
await chain.seal_and_store(capsule, seal=temp_seal)
132133

133134
assert mock_storage.store.call_count == 2
134135
assert mock_storage.get_latest.call_count == 2

0 commit comments

Comments
 (0)