mirror of
https://github.com/PR0M3TH3AN/SeedPass.git
synced 2025-09-09 07:48:57 +00:00
11 lines
239 B
Python
11 lines
239 B
Python
# test_import.py
|
|
|
|
try:
|
|
from bip_utils import Bip39SeedGenerator
|
|
|
|
print("Bip39SeedGenerator imported successfully.")
|
|
except ImportError as e:
|
|
print(f"ImportError: {e}")
|
|
except Exception as e:
|
|
print(f"Unexpected error: {e}")
|