Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelldls committed Aug 28, 2024
1 parent b4a819c commit b565b6d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/edge_containers_cli/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ def main(
)
ec_backend.set_context(context)


# test with:
# python -m edge_containers_cli
if __name__ == "__main__":
Expand Down
6 changes: 3 additions & 3 deletions src/edge_containers_cli/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ def create_version_map(
cmd = f"git cat-file -p {symlink_object_map[symlink]}"
result_symlinks = str(shell.run_command(cmd))
symlink_map[symlink] = result_symlinks
cached_git_obj[
symlink_object_map[symlink]
] = result_symlinks
cached_git_obj[symlink_object_map[symlink]] = (
result_symlinks
)

## Group sources per symlink target
target_tree = {}
Expand Down
2 changes: 1 addition & 1 deletion src/edge_containers_cli/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ def __init__(self):
def __call__(self):
return WorkingDir(self.debug)

new_workdir = NewWorkingDir()

new_workdir = NewWorkingDir()


def init_cleanup(debug: bool = False):
Expand Down

0 comments on commit b565b6d

Please sign in to comment.