Skip to content

Commit

Permalink
modify the code
Browse files Browse the repository at this point in the history
  • Loading branch information
Wanghanying committed Dec 11, 2024
1 parent 9aab405 commit 0540ef9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions bizyair_extras/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
from .nodes_comfyui_detail_daemon import *
from .nodes_comfyui_instantid import *
from .nodes_comfyui_pulid_flux import *
from .nodes_comfyui_rf_inversion import *
from .nodes_controlnet import *
from .nodes_custom_sampler import *
from .nodes_differential_diffusion import *
Expand Down
4 changes: 2 additions & 2 deletions bizyair_extras/nodes_comfyui_rf_inversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class OutFluxModelSamplingPredNode(BizyAirBaseNode):
def INPUT_TYPES(s):
return {
"required": {
"model": ("MODEL",),
"model": (data_types.MODEL,),
"max_shift": (
"FLOAT",
{"default": 1.15, "min": 0.0, "max": 100.0, "step": 0.01},
Expand Down Expand Up @@ -57,7 +57,7 @@ class InFluxModelSamplingPredNode(BizyAirBaseNode):
def INPUT_TYPES(s):
return {
"required": {
"model": ("MODEL",),
"model": (data_types.MODEL,),
"max_shift": (
"FLOAT",
{"default": 1.15, "min": 0.0, "max": 100.0, "step": 0.01},
Expand Down

0 comments on commit 0540ef9

Please sign in to comment.