mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix error when inpainting using runwayml inpainting model (#1634)
- error was "Omnibus object has no attribute pil_image" - closes #1596
This commit is contained in:
parent
9b6b27a156
commit
a9aa4e45aa
@ -12,6 +12,8 @@ from ldm.invoke.generator.txt2img import Txt2Img
|
||||
class Omnibus(Img2Img,Txt2Img):
|
||||
def __init__(self, model, precision):
|
||||
super().__init__(model, precision)
|
||||
self.pil_mask = None
|
||||
self.pil_image = None
|
||||
|
||||
def get_make_image(
|
||||
self,
|
||||
|
Loading…
x
Reference in New Issue
Block a user