Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
eukreign committed Jul 27, 2022
1 parent 656e299 commit 2e975c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lbry/extras/daemon/daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import typing
import random
import tracemalloc
from itertools import chain
import itertools
from decimal import Decimal
from urllib.parse import urlencode, quote
from typing import Callable, Optional, List
Expand Down Expand Up @@ -1988,7 +1988,7 @@ async def jsonrpc_sync_apply(self, password, data=None, wallet_id=None, blocking
wallet_changed = False
if data is not None:
added_accounts, merged_accounts = wallet.merge(self.wallet_manager, password, data)
for new_account in chain(added_accounts, merged_accounts):
for new_account in itertools.chain(added_accounts, merged_accounts):
await new_account.maybe_migrate_certificates()
if added_accounts and self.ledger.network.is_connected:
if blocking:
Expand Down

0 comments on commit 2e975c8

Please sign in to comment.