Skip to content

Commit

Permalink
make format
Browse files Browse the repository at this point in the history
  • Loading branch information
jensens committed Feb 28, 2024
1 parent d88f5c5 commit be2c694
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/mxdev/processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,7 @@ 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 ""
editable = (
f"""-e ./{package['target']}/{name}{subdir}{extras}\n"""
)
editable = f"""-e ./{package['target']}/{name}{subdir}{extras}\n"""
logger.debug(f"-> {editable.strip()}")
fio.write(editable)
fio.write("\n\n")
Expand Down

0 comments on commit be2c694

Please sign in to comment.