mirror of
https://github.com/zebrajr/faceswap.git
synced 2025-12-06 00:20:09 +01:00
- Add standardized class __init__ log function - Import logger from lib.__init__ to prevent custom log level errors when running non-fs scripts
5 lines
185 B
Python
5 lines
185 B
Python
#!/usr/bin/env python3
|
|
""" Initialization for faceswap's lib section """
|
|
# Import logger here so our custom loglevels are set for when executing code outside of FS
|
|
from . import logger
|