1
0
Fork 0
mirror of https://github.com/deepfakes/faceswap synced 2025-06-07 10:43:27 -04:00
faceswap/plugins/convert/_config.py
2024-04-03 14:03:54 +01:00

17 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__))