removed not needed parameter

This commit is contained in:
Andreas Preikschat 2013-01-19 00:01:16 +01:00
parent 3bf4f401b1
commit bd4abf7655
1 changed files with 1 additions and 1 deletions

View File

@ -298,7 +298,7 @@ class Settings(QtCore.QSettings):
self.setValue(new_key, old_value) self.setValue(new_key, old_value)
self.remove(old_key) self.remove(old_key)
def value(self, key, default_value=None): def value(self, key):
""" """
Returns the value for the given ``key``. The returned ``value`` is of the same type as the default value in the Returns the value for the given ``key``. The returned ``value`` is of the same type as the default value in the
*Settings.__default_settings__* dict. *Settings.__default_settings__* dict.