We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 939e3eb commit 5dd6ab4Copy full SHA for 5dd6ab4
hamilton/driver.py
@@ -1455,7 +1455,9 @@ def materialize(
1455
try:
1456
materializer_factories, extractor_factories = self._process_materializers(materializers)
1457
if len(materializer_factories) == len(final_vars) == 0:
1458
- raise ValueError("No output requested. Please either pass in materializers that will save data, or pass in `additional_vars` to compute.")
+ raise ValueError(
1459
+ "No output requested. Please either pass in materializers that will save data, or pass in `additional_vars` to compute."
1460
+ )
1461
function_graph = materialization.modify_graph(
1462
self.graph, materializer_factories, extractor_factories
1463
)
0 commit comments