Files
seedPass/src/tests/test_import.py
2025-06-29 14:51:17 -04:00

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}")