Skip to content

Commit

Permalink
Fix 3.7 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
waveform80 committed Dec 2, 2024
1 parent 1763f1b commit b9d5081
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions blinkenxmas/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,8 +252,7 @@ def get_parser(config, **kwargs):
],
help=SUPPRESS)
parser.add_argument(
'--led-count', metavar='NUM', type=int,
default=sum(strip_counts, start=0),
'--led-count', metavar='NUM', type=int, default=sum(strip_counts, 0),
help=SUPPRESS)
parser.add_argument(
'--fps', metavar='NUM', type=int, default=min((
Expand Down

0 comments on commit b9d5081

Please sign in to comment.