We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ec4d18 commit d47843eCopy full SHA for d47843e
application.py
@@ -345,7 +345,10 @@ def _rawLoadConfig(self, file):
345
def get_saving_dict(self):
346
tp_config_dict = dict([])
347
for key in self.config_dict.keys():
348
- tp_config_dict[key] = self.config_dict[key].get()
+ if not isinstance(self.config_dict[key], list):
349
+ tp_config_dict[key] = self.config_dict[key].get()
350
+ else:
351
+ tp_config_dict[key] = self.config_dict[key]
352
return self._bnc.save_to_pickle(), tp_config_dict
353
354
def _rawSaveConfig(self, file):
0 commit comments