From 23f72898182e90fecbb15cebbe9ef0f886ca743a Mon Sep 17 00:00:00 2001 From: Ann Priestman Date: Tue, 18 Dec 2018 10:07:19 -0500 Subject: [PATCH] Added comment --- pythonExamples/fileIngestModuleWithGui.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pythonExamples/fileIngestModuleWithGui.py b/pythonExamples/fileIngestModuleWithGui.py index eeb74e6fec..cdcaca3576 100644 --- a/pythonExamples/fileIngestModuleWithGui.py +++ b/pythonExamples/fileIngestModuleWithGui.py @@ -90,6 +90,7 @@ class SampleFileIngestModuleWithUIFactory(IngestModuleFactoryAdapter): return True # TODO: Update class names to ones that you create below + # Note that you must use GenericIngestModuleJobSettings instead of making a custom settings class. def getIngestJobSettingsPanel(self, settings): if not isinstance(settings, GenericIngestModuleJobSettings): raise IllegalArgumentException("Expected settings argument to be instanceof GenericIngestModuleJobSettings")