Skip to content

Commit b5ab8ba

Browse files
committed
added pylint directive
1 parent 817cd79 commit b5ab8ba

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

adafruit_si5351.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,7 @@ def configure_fractional(self, pll, divider, numerator, denominator, inverted=Fa
344344
fractional divider with numerator/denominator. Again this is less
345345
accurate but has a wider range of output frequencies.
346346
"""
347+
# pylint: disable=too-many-arguments
347348
if divider >= 2049 or divider <= 3:
348349
raise Exception("Divider must be in range 3 to 2049.")
349350
if denominator > 0xFFFFF or denominator <= 0: # Prevent divide by zero.

0 commit comments

Comments
 (0)