mirror of
https://github.com/deepfakes/faceswap
synced 2025-06-09 04:36:50 -04:00
10 lines
298 B
Python
10 lines
298 B
Python
#!/usr/bin/env python3
|
|
""" Original Trainer """
|
|
|
|
from ._base import TrainerBase
|
|
|
|
|
|
class Trainer(TrainerBase):
|
|
""" Original is currently identical to Base """
|
|
def __init__(self, *args, **kwargs): # pylint:disable=useless-super-delegation
|
|
super().__init__(*args, **kwargs)
|