Files
seedPass/src/local_bip85/__init__.py
2025-08-12 11:01:17 -04:00

16 lines
362 B
Python

# bip85/__init__.py
import logging
logger = logging.getLogger(__name__)
try:
from .bip85 import BIP85
except Exception as exc:
logger.error("Failed to import BIP85 module: %s", exc, exc_info=True)
raise ImportError(
"BIP85 dependencies are missing. Install 'bip_utils', 'cryptography', and 'colorama'."
) from exc
__all__ = ["BIP85"]