Skip to content

Commit

Permalink
Updated signature to match lib updates for changes due to nRF51 bootl…
Browse files Browse the repository at this point in the history
…oarder update
  • Loading branch information
evoggy committed Jan 29, 2024
1 parent 03332ea commit 231c86a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cfloader/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,10 @@ def main():
for t in sys.argv[2:]:
if t.startswith("deck-"):
[deck, target, type] = t.split("-")
targets.append(Target("deck", target, type))
targets.append(Target("deck", target, type, [], []))
else:
[target, type] = t.split("-")
targets.append(Target("cf2", target, type))
targets.append(Target("cf2", target, type, [], []))
else:
print("Action", sys.argv[0], "unknown!")
sys.exit(-1)
Expand Down

0 comments on commit 231c86a

Please sign in to comment.