Skip to content

Commit

Permalink
ignore scribe import errors for unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
eukreign committed Mar 26, 2022
1 parent 21a3c0f commit 9ef3ae6
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions lbry/wallet/orchstr8/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,13 @@
import urllib.request
from uuid import uuid4

from scribe.env import Env
from scribe.hub.service import HubServerService
from scribe.elasticsearch.service import ElasticSyncService
from scribe.blockchain.service import BlockchainProcessorService
try:
from scribe.env import Env
from scribe.hub.service import HubServerService
from scribe.elasticsearch.service import ElasticSyncService
from scribe.blockchain.service import BlockchainProcessorService
except ImportError:
pass

import lbry
from lbry.wallet import Wallet, Ledger, RegTestLedger, WalletManager, Account, BlockHeightEvent
Expand Down

0 comments on commit 9ef3ae6

Please sign in to comment.