Style.
This commit is contained in:
parent
223177e192
commit
48efadeccf
4
nodes.py
4
nodes.py
|
@ -746,12 +746,12 @@ class SaveImage:
|
||||||
except:
|
except:
|
||||||
digits = 0
|
digits = 0
|
||||||
return (digits, prefix)
|
return (digits, prefix)
|
||||||
|
|
||||||
def compute_vars(input):
|
def compute_vars(input):
|
||||||
input = input.replace("%width%", str(images[0].shape[1]))
|
input = input.replace("%width%", str(images[0].shape[1]))
|
||||||
input = input.replace("%height%", str(images[0].shape[0]))
|
input = input.replace("%height%", str(images[0].shape[0]))
|
||||||
return input
|
return input
|
||||||
|
|
||||||
filename_prefix = compute_vars(filename_prefix)
|
filename_prefix = compute_vars(filename_prefix)
|
||||||
|
|
||||||
subfolder = os.path.dirname(os.path.normpath(filename_prefix))
|
subfolder = os.path.dirname(os.path.normpath(filename_prefix))
|
||||||
|
|
|
@ -30,7 +30,7 @@ async def cache_control(request: web.Request, handler):
|
||||||
class PromptServer():
|
class PromptServer():
|
||||||
def __init__(self, loop):
|
def __init__(self, loop):
|
||||||
PromptServer.instance = self
|
PromptServer.instance = self
|
||||||
|
|
||||||
mimetypes.init();
|
mimetypes.init();
|
||||||
mimetypes.types_map['.js'] = 'application/javascript; charset=utf-8'
|
mimetypes.types_map['.js'] = 'application/javascript; charset=utf-8'
|
||||||
self.prompt_queue = None
|
self.prompt_queue = None
|
||||||
|
|
Loading…
Reference in New Issue