Skip to content

Commit b41700d

Browse files
committed
Fixed some linter errors
1 parent f30d397 commit b41700d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/zenml/pipelines/pipeline_definition.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1750,7 +1750,7 @@ def _reconfigure_from_file_with_overrides(
17501750
with self.__suppress_configure_warnings__():
17511751
self.configure(**_from_config_file)
17521752

1753-
def _compute_output_schema(self) -> Dict[str, Any]:
1753+
def _compute_output_schema(self) -> Optional[Dict[str, Any]]:
17541754
"""Computes the output schema for the pipeline.
17551755
17561756
Returns:
@@ -1828,8 +1828,7 @@ def _compute_input_schema(self) -> Optional[Dict[str, Any]]:
18281828
"""Create a JSON schema that represents the pipeline input parameters.
18291829
18301830
Returns:
1831-
A JSON schema that represents the pipeline input
1832-
parameters.
1831+
A JSON schema that represents the pipeline input parameters.
18331832
"""
18341833
input_model = self._compute_input_model()
18351834
if not input_model:

0 commit comments

Comments
 (0)