Bugfix: Init no sample rate

This commit is contained in:
Logan Cusano
2021-12-28 01:53:55 -05:00
parent 1a930594b3
commit 4bab5aae5b

2
bot.py
View File

@@ -27,7 +27,7 @@ class Bot(commands.Bot):
self.mode = "wbfm"
self.gain = 40
self.squelch = 0
self.sample_rate = ""
self.sample_rate = "200k"
self.sample_rate_re = re.compile('(\d+\.?\d*k)')