mirror of
https://github.com/PR0M3TH3AN/SeedPass.git
synced 2025-09-08 15:28:44 +00:00
16 lines
362 B
Python
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"]
|