Skip to content

Commit

Permalink
remove empty install options
Browse files Browse the repository at this point in the history
  • Loading branch information
jensens committed Feb 28, 2024
1 parent cd47fd9 commit b347878
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/mxdev/processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,8 @@ def write_dev_sources(fio, packages: typing.Dict[str, typing.Dict[str, typing.An
continue
extras = f"[{package['extras']}]" if package["extras"] else ""
subdir = f"/{package['subdirectory']}" if package["subdirectory"] else ""
install_options = ""
editable = (
f"""-e ./{package['target']}/{name}{subdir}{extras}{install_options}\n"""
f"""-e ./{package['target']}/{name}{subdir}{extras}\n"""
)
logger.debug(f"-> {editable.strip()}")
fio.write(editable)
Expand Down

0 comments on commit b347878

Please sign in to comment.