Skip to content

Commit

Permalink
chore: fixed linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
makkus committed Jul 18, 2024
1 parent bed249d commit 1cf6bad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions scripts/documentation/gen_api_doc_pages.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@
elif parts[-1] == "__main__":
continue

nav[parts] = doc_path #
nav[parts] = doc_path

with mkdocs_gen_files.open(full_doc_path, "w") as fd:
ident = ".".join(parts)
print("::: " + ident, file=fd)

mkdocs_gen_files.set_edit_path(full_doc_path, path)

with mkdocs_gen_files.open("reference/SUMMARY.md", "w") as nav_file: #
nav_file.writelines(nav.build_literate_nav()) #
with mkdocs_gen_files.open("reference/SUMMARY.md", "w") as nav_file:
nav_file.writelines(nav.build_literate_nav())
4 changes: 2 additions & 2 deletions src/kiara/models/module/pipeline/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -569,9 +569,9 @@ def set_step_outputs(
input_ref.value_name
] = outputs[field_name]

for step_id, step_inputs in inputs_to_set.items():
for _step_id, step_inputs in inputs_to_set.items():
changed_step_fields = self._set_step_inputs(
step_id=step_id, inputs=step_inputs
step_id=_step_id, inputs=step_inputs
)
dpath.merge(result, changed_step_fields) # type: ignore

Expand Down

0 comments on commit 1cf6bad

Please sign in to comment.