faceswap/plugins/convert/_config.py
2024-04-03 14:03:54 +01:00

18 lines
378 B
Python

#!/usr/bin/env python3
""" Default configurations for convert """
import logging
import os
from lib.config import FaceswapConfig
logger = logging.getLogger(__name__)
class Config(FaceswapConfig):
""" Config File for Convert """
def set_defaults(self):
""" Set the default values for config """
self._defaults_from_plugin(os.path.dirname(__file__))