mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-03-12 20:42:45 -07:00
9 lines
187 B
Python
9 lines
187 B
Python
class AntiPickler():
|
|
def __init__(self, obj):
|
|
self.obj = obj
|
|
|
|
def __getstate__(self):
|
|
return dict()
|
|
|
|
def __setstate__(self, d):
|
|
self.__dict__.update(d) |