Fix unable to find Real-ESRGAN model info error (AttributeError: 'NoneType' object has no attribute 'data_path') #6841 #5170

This commit is contained in:
AUTOMATIC
2023-01-17 13:57:55 +03:00
parent c361b89026
commit aede265f1d
2 changed files with 5 additions and 8 deletions

View File

@@ -95,6 +95,7 @@ class UpscalerData:
def __init__(self, name: str, path: str, upscaler: Upscaler = None, scale: int = 4, model=None):
self.name = name
self.data_path = path
self.local_data_path = path
self.scaler = upscaler
self.scale = scale
self.model = model