Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 36 additions & 20 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ pandas-stubs = ">=2.2.2,<3.0"
pyarrow-stubs = ">=19.0,<21.0"
ruff = ">=0.14,<1.0.0"
types-jsonschema = ">=4.25.1,<5.0"
types-networkx = {markers = "python_version >= \"3.10\"", version = "^3.6.1.20260303"}

[tool.poetry.group.docs.dependencies]
sphinx = ">=7.4.7,<8.0"
Expand Down
3 changes: 2 additions & 1 deletion src/vtlengine/API/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ def _extract_input_datasets(script: Union[str, TransformationScheme, Path]) -> L
raise TypeError("Unsupported script type.")

ast = create_ast(vtl_script)
dag_inputs = DAGAnalyzer.ds_structure(ast).global_inputs
ds = DAGAnalyzer.ds_structure(ast)
dag_inputs = ds.global_input_datasets + ds.global_input_dataset_or_scalar

return dag_inputs

Expand Down
Loading