Skip to content

Commit

Permalink
RPi Pins: Fix --all.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gadgetoid committed Sep 25, 2023
1 parent 0cda249 commit 48e05a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpipins/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def __init__(self, argv):
self.show = [self.valid_label(arg) for arg in argv if not arg.startswith("--")]

if self.show == [] and self.all:
self.show = [] # TODO: Select relevant cols once we have some
self.show = COLS[2:]
elif self.all:
usage("Please use either --all or a list of interfaces.")

Expand Down

0 comments on commit 48e05a5

Please sign in to comment.