Skip to content

Commit

Permalink
types: flake8 fix (#2045)
Browse files Browse the repository at this point in the history
Cherry-picked from 24e2ec8
  • Loading branch information
kingosticks committed Mar 8, 2022
1 parent c36524a commit faffd17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mopidy/config/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ class Port(Integer):

def __init__(self, choices=None, optional=False):
super().__init__(
minimum=0, maximum=2 ** 16 - 1, choices=choices, optional=optional
minimum=0, maximum=2**16 - 1, choices=choices, optional=optional
)


Expand Down

0 comments on commit faffd17

Please sign in to comment.