sound_canberra pylint fixes

This commit is contained in:
lakshyacis 2019-09-23 16:08:56 +05:30
parent df1994d6f3
commit a86c5188c4
No known key found for this signature in database
GPG Key ID: D2C539C8EC63E9EB
1 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,8 @@
# -*- coding: utf-8 -*-
"""
src/plugins/proxyconfig_stem.py
===================================
"""
from pybitmessage.bitmessageqt import sound
@ -14,7 +18,8 @@ _theme = {
}
def connect_plugin(category, label=None):
def connect_plugin(category, label=None): # pylint: disable=unused-argument
"""This function implements the entry point."""
try:
_canberra.play(0, pycanberra.CA_PROP_EVENT_ID, _theme[category], None)
except (KeyError, pycanberra.CanberraException):