diff --git a/ceci/stage.py b/ceci/stage.py index afdb06d..bba4089 100644 --- a/ceci/stage.py +++ b/ceci/stage.py @@ -424,9 +424,9 @@ def _describe_configuration_text(cls): txt = f"[{val.dtype.__name__}]: {val._help} (required)" else: if val.dtype is None: - txt = f"[{val.dtype.__name__}]: {val._help} (default={val.default})" - else: txt = f"[type not specified]: {val._help} (default={val.default})" + else: + txt = f"[{val.dtype.__name__}]: {val._help} (default={val.default})" elif isinstance(val, type): txt = f"[{val.__name__}]: (required)" else: