Skip to content

Commit

Permalink
Removing obsolete pylint disable.
Browse files Browse the repository at this point in the history
  • Loading branch information
mithro committed Apr 23, 2015
1 parent d8e685c commit cd47c5f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions python-api/gstswitch/controller.py
Expand Up @@ -182,12 +182,9 @@ def cb_signal_handler(self, connection, sender_name, object_path,
unpack = parameters.unpack()
for callback in callbacks:
# We're passing the values unpacked from the GVariant as-is
# to the callback. The auther of the callback is responsible
# to the callback. The author of the callback is responsible
# to make sure that it's arguments match with the DBus Signal
# Specification for the particular Signal he's subscribing for
# Disable pylint-warning because we know what we're doing here.

# pylint: disable=star-args
callback(*unpack)

except AttributeError:
Expand Down

0 comments on commit cd47c5f

Please sign in to comment.