fixed pylint warning for PathJob

This commit is contained in:
Markus Lampert
2019-06-23 18:18:45 -07:00
parent 23efe695ae
commit f4bee893d7
3 changed files with 24 additions and 6 deletions

View File

@@ -53,6 +53,9 @@ class CommandJobCreate:
and a template to be used for the initial creation.
'''
def __init__(self):
pass
def GetResources(self):
return {'Pixmap': 'Path-Job',
'MenuText': QtCore.QT_TRANSLATE_NOOP("Path_Job", "Job"),
@@ -90,6 +93,10 @@ class CommandJobTemplateExport:
on Job creation and be available for selection.
'''
def __init__(self):
pass
def GetResources(self):
return {'Pixmap': 'Path-ExportTemplate',
'MenuText': QtCore.QT_TRANSLATE_NOOP("Path_Job", "Export Template"),