This commit is contained in:
Kovid Goyal 2011-10-04 11:04:08 -06:00
parent 0b3488319e
commit cebaee7f23

View File

@ -414,7 +414,8 @@ class DevicePlugin(Plugin):
@classmethod @classmethod
def config_widget(cls): def config_widget(cls):
''' '''
Should return a QWidget. The QWidget contains the settings for the device interface Should return a QWidget. The QWidget contains the settings for the
device interface
''' '''
raise NotImplementedError() raise NotImplementedError()
@ -429,8 +430,9 @@ class DevicePlugin(Plugin):
@classmethod @classmethod
def settings(cls): def settings(cls):
''' '''
Should return an opts object. The opts object should have at least one attribute Should return an opts object. The opts object should have at least one
`format_map` which is an ordered list of formats for the device. attribute `format_map` which is an ordered list of formats for the
device.
''' '''
raise NotImplementedError() raise NotImplementedError()