forked from platypush/platypush
Replaced if not
references with if <var> is not None
This commit is contained in:
parent
f7576dcb7f
commit
20a779bd8f
1 changed files with 4 additions and 4 deletions
|
@ -136,7 +136,7 @@ class SoundPlugin(Plugin):
|
||||||
completed_callback_event = Event()
|
completed_callback_event = Event()
|
||||||
file = os.path.abspath(os.path.expanduser(file))
|
file = os.path.abspath(os.path.expanduser(file))
|
||||||
|
|
||||||
if not device:
|
if device is None:
|
||||||
device = self.output_device
|
device = self.output_device
|
||||||
|
|
||||||
def audio_callback(outdata, frames, time, status):
|
def audio_callback(outdata, frames, time, status):
|
||||||
|
@ -261,7 +261,7 @@ class SoundPlugin(Plugin):
|
||||||
if os.path.isfile(file):
|
if os.path.isfile(file):
|
||||||
os.unlink(file)
|
os.unlink(file)
|
||||||
|
|
||||||
if not device:
|
if device is None:
|
||||||
device = self.input_device
|
device = self.input_device
|
||||||
|
|
||||||
if sample_rate is None:
|
if sample_rate is None:
|
||||||
|
@ -361,10 +361,10 @@ class SoundPlugin(Plugin):
|
||||||
self.playback_paused_changed.clear()
|
self.playback_paused_changed.clear()
|
||||||
self.recording_paused_changed.clear()
|
self.recording_paused_changed.clear()
|
||||||
|
|
||||||
if not input_device:
|
if input_device is None:
|
||||||
input_device = self.input_device
|
input_device = self.input_device
|
||||||
|
|
||||||
if not output_device:
|
if output_device is None:
|
||||||
output_device = self.output_device
|
output_device = self.output_device
|
||||||
|
|
||||||
if sample_rate is None:
|
if sample_rate is None:
|
||||||
|
|
Loading…
Reference in a new issue