Skip to content

Commit

Permalink
fix logging
Browse files Browse the repository at this point in the history
  • Loading branch information
noskill committed Jan 21, 2025
1 parent c324921 commit c784cdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions multigen/pipes.py
Original file line number Diff line number Diff line change
Expand Up @@ -565,8 +565,8 @@ def __verify_from_pipe(self, cls, pipe, **args):
source_components = set(pipe.components.keys())
target_components = set(allowed)

logging.debug("Missing components: ", target_components - source_components)
logging.debug("Extra components: ", source_components - target_components)
logging.debug("Missing components: " + str(target_components - source_components))
logging.debug("Extra components: " + str(source_components - target_components))
return cls(**{k: v for (k, v) in pipe.components.items() if k in allowed}, **args)

def setup(self, image=None, image_painted=None, mask=None, blur=4,
Expand Down

0 comments on commit c784cdd

Please sign in to comment.