Skip to content

Commit

Permalink
Removed unused argument.
Browse files Browse the repository at this point in the history
  • Loading branch information
tetov committed Nov 9, 2020
1 parent 8ae0aa4 commit dfe5788
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rapid_clay_formations_fab/robots/_scripts/fabrication.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def fabrication(run_conf: confuse.AttrDict, run_data: dict) -> None:

progress_file, done_file = _setup_file_paths(run_conf.run_data_path)

_edit_fab_data(fab_elements, run_conf)
_edit_fab_data(fab_elements)

prev_elem: Optional[PlaceElement] = None

Expand Down Expand Up @@ -145,7 +145,7 @@ def _write_run_data(
log.info(f"Wrote run_data to {file_}.")


def _edit_fab_data(fab_elems: List[PlaceElement], run_conf: confuse.AttrDict) -> None:
def _edit_fab_data(fab_elems: List[PlaceElement]) -> None:
"""Edit placed marker for fabrication elements.
Parameters
Expand Down

0 comments on commit dfe5788

Please sign in to comment.