Skip to content

Commit

Permalink
Hotfix is divisible by 8 (#84)
Browse files Browse the repository at this point in the history
* hotfix is_divisible_by_8

* hotfix is_divisible_by_8
  • Loading branch information
MaraScott committed Jun 21, 2024
1 parent d36e093 commit 5b64cc9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion py/inc/lib/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
class MS_Image:
@classmethod
def is_divisible_by_8(self, image):
width, height = image.shape[1], image.shape[0]
width, height = image.shape[2], image.shape[1]
return (width % 8 == 0) and (height % 8 == 0)

@classmethod
Expand Down
2 changes: 1 addition & 1 deletion py/utils/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
#
###

VERSION = "4.3.1"
VERSION = "4.3.2"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "comfyui_marascott_nodes"
description = "A set of nodes including a universal bus, an Inpainting By Mask and a large Upscaler/Refiner"
version = "4.3.1"
version = "4.3.2"
license = "LICENSE"
dependencies = ["blend_modes", "numba", "color-matcher", "groq"]

Expand Down

0 comments on commit 5b64cc9

Please sign in to comment.