Skip to content

Commit

Permalink
Fix ruff (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
camfairchild authored Nov 12, 2024
1 parent f420553 commit 045d0e6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
20 changes: 10 additions & 10 deletions bittensor_wallet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
from bittensor_wallet.bittensor_wallet import (
# classes
Config,
Keyfile,
Keypair,
Wallet,
Config as Config,
Keyfile as Keyfile,
Keypair as Keypair,
Wallet as Wallet,
# modules
config,
errors,
keyfile,
keypair,
utils,
wallet,
config as config,
errors as errors,
keyfile as keyfile,
keypair as keypair,
utils as utils,
wallet as wallet,
)

__version__ = "2.0.0"
1 change: 0 additions & 1 deletion tests/test_keyfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@

import pytest
from bip39 import bip39_validate
from jedi.common import monkeypatch

from bittensor_wallet.errors import ConfigurationError, KeyFileError
from bittensor_wallet.keyfile import Keyfile
Expand Down

0 comments on commit 045d0e6

Please sign in to comment.