Skip to content

Commit

Permalink
pylint error
Browse files Browse the repository at this point in the history
  • Loading branch information
0x9900 committed Apr 23, 2024
1 parent 68a2f36 commit f9620fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sa818.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def set_filter(self, opts):
setattr(opts, key, 1)
_rx = {0: 'enabled', 1: 'disabled'}
# filters are pre-emphasis, high-pass, low-pass
cmd = (f"{self.FILTER}={opts.emphasis},{opts.highpass},{opts.lowpass}")
cmd = f"{self.FILTER}={opts.emphasis},{opts.highpass},{opts.lowpass}"
self.send(cmd)
time.sleep(1)
response = self.readline()
Expand Down

0 comments on commit f9620fc

Please sign in to comment.