Skip to content

Commit

Permalink
Better now?
Browse files Browse the repository at this point in the history
  • Loading branch information
curufinwe committed Aug 9, 2023
1 parent 98100e3 commit 4e7772b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sisyphus/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def extract_paths(args: Any) -> Set:
if isinstance(obj, Block) or isinstance(obj, enum.Enum):
continue
if (hasattr(obj, '_sis_path') and obj._sis_path is True
and not (type(obj) is type and issubclass(obj, AbstractPath))):
and not (type(obj) is type and issubclass(obj, AbstractPath))):
out.add(obj)
elif isinstance(obj, (list, tuple, set)):
queue.extend(obj)
Expand Down

0 comments on commit 4e7772b

Please sign in to comment.