We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccf92f4 commit cc88b1cCopy full SHA for cc88b1c
nodestream/project/project.py
@@ -345,11 +345,7 @@ def get_pipelines_schema(
345
f"None of the specified pipelines {pipeline_names} were found. Available pipelines: {available_pipelines}"
346
)
347
348
- schema = filtered_project.make_schema()
349
- if type_overrides_file is not None:
350
- overrides_schema = Schema.read_from_file(type_overrides_file)
351
- schema.merge(overrides_schema)
352
- return schema
+ return filtered_project.get_schema(type_overrides_file=type_overrides_file)
353
354
def get_child_expanders(self) -> Iterable[ExpandsSchema]:
355
return self.scopes_by_name.values()
0 commit comments