Skip to content

Commit

Permalink
Fix linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
yogh333 committed Jul 25, 2024
1 parent 7416088 commit c58b484
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ragger/utils/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def find_application(base_dir: Path, device: str, sdk: str) -> Path:
cmd = ["cargo", "metadata", "--no-deps"]
output = subprocess.check_output(cmd)
metadata = json.loads(output)
target = Path(metadata["target_directory"])
target = Path(metadata["target_directory"])
app = target / device / "release" / app_name
else:
app = app / "build" / device / "bin" / "app.elf"
Expand Down

0 comments on commit c58b484

Please sign in to comment.