Skip to content

Commit fd9f598

Browse files
committed
black
1 parent cb21b8a commit fd9f598

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/aleph_client/commands/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,13 +243,13 @@ async def wait_for_confirmed_flow(account: ETHAccount, receiver: str):
243243

244244

245245
async def filter_only_valid_messages(messages: List[AlephMessage]):
246-
"""Iteratively check the status of each message from the API and only return
246+
"""Iteratively check the status of each message from the API and only return
247247
messages whose status is processed.
248248
"""
249249
filtered_messages = []
250250
async with AlephHttpClient(api_server=settings.API_HOST) as client:
251251
for message in messages:
252-
item_hash: ItemHash = message.item_hash
252+
item_hash: ItemHash = message.item_hash
253253
try:
254254
msg = await client.get_message(ItemHash(item_hash))
255255
filtered_messages.append(msg)

0 commit comments

Comments
 (0)