Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion bittensor_cli/src/bittensor/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

from bittensor_wallet import Wallet, Keypair
from bittensor_wallet.utils import SS58_FORMAT
from bittensor_wallet.errors import KeyFileError
from bittensor_wallet import utils
from jinja2 import Template
from markupsafe import Markup
Expand Down Expand Up @@ -222,7 +223,8 @@ def get_hotkey_wallets_for_wallet(
except (
UnicodeDecodeError,
AttributeError,
TypeError
TypeError,
KeyFileError,
): # usually an unrelated file like .DS_Store
continue

Expand Down