move tools/legacy_keyring.py to chia/legacy/keyring.py (#17252)

* move `tools/legacy_keyring.py` to `chia/legacy/keyring.py`

* init
This commit is contained in:
Kyle Altendorf 2024-01-09 15:09:56 -05:00 committed by GitHub
parent bb81c0f65b
commit 04f59ff1dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 1 deletions

0
chia/legacy/__init__.py Normal file
View File

View File

@ -12,7 +12,7 @@ except ImportError:
if sys.platform == "linux":
raise
from tools.legacy_keyring import create_legacy_keyring, generate_and_add, get_keys, legacy_keyring
from chia.legacy.keyring import create_legacy_keyring, generate_and_add, get_keys, legacy_keyring
def show() -> Result: