From fa07426569f40dfe75bceff2ef2034de24bc7e8c Mon Sep 17 00:00:00 2001 From: pythongosssss <125205205+pythongosssss@users.noreply.github.com> Date: Thu, 9 Mar 2023 18:18:08 +0000 Subject: [PATCH] Remove random spaces --- nodes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nodes.py b/nodes.py index 33092b33..002d022d 100644 --- a/nodes.py +++ b/nodes.py @@ -832,7 +832,7 @@ class LoadImage: with open(image_path, 'rb') as f: m.update(f.read()) return m.digest().hex() - + class LoadImageMask: input_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), "input") @classmethod @@ -867,7 +867,7 @@ class LoadImageMask: with open(image_path, 'rb') as f: m.update(f.read()) return m.digest().hex() - + class ImageScale: upscale_methods = ["nearest-exact", "bilinear", "area"] crop_methods = ["disabled", "center"]