40 error = "" |
40 error = "" |
41 |
41 |
42 printRemoverPluginObject = None |
42 printRemoverPluginObject = None |
43 |
43 |
44 |
44 |
45 def createPrintRemoverPage(configDlg): |
45 def createPrintRemoverPage(configDlg): # noqa: U100 |
46 """ |
46 """ |
47 Module function to create the Print Remover configuration page. |
47 Module function to create the Print Remover configuration page. |
48 |
48 |
49 @param configDlg reference to the configuration dialog |
49 @param configDlg reference to the configuration dialog |
50 @type ConfigurationWidget |
50 @type ConfigurationWidget |
51 @return reference to the configuration page |
51 @return reference to the configuration page |
52 @rtype PrintRemoverPage |
52 @rtype PrintRemoverPage |
53 """ |
53 """ |
|
54 from PrintRemover.ConfigurationPage.PrintRemoverPage import PrintRemoverPage |
|
55 |
54 global printRemoverPluginObject |
56 global printRemoverPluginObject |
55 from PrintRemover.ConfigurationPage.PrintRemoverPage import PrintRemoverPage |
|
56 |
57 |
57 return PrintRemoverPage(printRemoverPluginObject) |
58 return PrintRemoverPage(printRemoverPluginObject) |
58 |
59 |
59 |
60 |
60 def getConfigData(): |
61 def getConfigData(): |