From cebaee7f2373206d2d261babbc3082e64f358891 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 4 Oct 2011 11:04:08 -0600 Subject: [PATCH] ... --- src/calibre/devices/interface.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/calibre/devices/interface.py b/src/calibre/devices/interface.py index 507a836e37..4877cd359e 100644 --- a/src/calibre/devices/interface.py +++ b/src/calibre/devices/interface.py @@ -414,7 +414,8 @@ class DevicePlugin(Plugin): @classmethod 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() @@ -429,8 +430,9 @@ class DevicePlugin(Plugin): @classmethod def settings(cls): ''' - Should return an opts object. The opts object should have at least one attribute - `format_map` which is an ordered list of formats for the device. + Should return an opts object. The opts object should have at least one + attribute `format_map` which is an ordered list of formats for the + device. ''' raise NotImplementedError()