diff --git a/python_modules/dagster/dagster/_core/definitions/declarative_automation/operators/dep_operators.py b/python_modules/dagster/dagster/_core/definitions/declarative_automation/operators/dep_operators.py index d217f6e765ef3..78682a944d9a2 100644 --- a/python_modules/dagster/dagster/_core/definitions/declarative_automation/operators/dep_operators.py +++ b/python_modules/dagster/dagster/_core/definitions/declarative_automation/operators/dep_operators.py @@ -75,9 +75,9 @@ def name(self) -> str: name = self.base_name props = [] if self.allow_selection is not None: - props.append("allow_selection={self.allow_selection}") + props.append(f"allow_selection={self.allow_selection}") if self.ignore_selection is not None: - props.append("ignore_selection={self.ignore_selection}") + props.append(f"ignore_selection={self.ignore_selection}") if props: name += f"({','.join(props)})"