Commit df6a7ebf authored by Roy Shilkrot's avatar Roy Shilkrot

revert things to master

parent 509fd145
......@@ -220,7 +220,7 @@ def tests(argv):
def start_webui():
print(f"Launching Web UI with arguments: {' '.join(sys.argv[1:])}")
import webui
webui.webui_or_api()
webui.webui()
if __name__ == "__main__":
......
......@@ -117,8 +117,6 @@ class Api:
return ImageToImageResponse(images=b64images, parameters=vars(img2imgreq), info=processed.js())
def extrasapi(self):
raise NotImplementedError
def extras_single_image_api(self, req: ExtrasSingleImageRequest):
reqDict = setUpscalers(req)
......
......@@ -64,11 +64,7 @@ class PydanticModelGenerator:
self._model_name = model_name
if class_instance is not None:
self._class_data = merge_class_params(class_instance)
else:
self._class_data = {}
self._class_data = merge_class_params(class_instance)
self._model_def = [
ModelDef(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment