Skip to content

Commit

Permalink
Account for __doc__ possibly being None
Browse files Browse the repository at this point in the history
Signed-off-by: liamhuber <[email protected]>
  • Loading branch information
liamhuber committed Jan 17, 2025
1 parent 4f05f6e commit f6ea024
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyiron_workflow/nodes/transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ def _build_inputs_preview(cls) -> dict[str, tuple[Any, Any]]:

@classmethod
def _extra_info(cls) -> str:
return cls.dataclass.__doc__
return cls.dataclass.__doc__ or ""


@classfactory
Expand Down

0 comments on commit f6ea024

Please sign in to comment.