fix indentation

This commit is contained in:
Kevin Alberts 2019-05-27 23:51:13 +02:00
parent aefcecd30e
commit 34a2e20698
Signed by: Kurocon
GPG key ID: BCD496FEBA0C6BC1

View file

@ -154,8 +154,8 @@ def bluetooth_audio_sink():
try:
output = subprocess.check_output("pamixer --list-sinks".split()).decode("utf-8")
output = [x for x in output.split('\n') if "blue" in x.lower()]
return -1
except (subprocess.CalledProcessError, FileNotFoundError):
return -1
sink = -1
try: