This method is used to load the configuration from one or several input(s). Custom Command line, configuration file. You have to override this method in your class.
(self)
| 49 | raise NotImplementedError |
| 50 | |
| 51 | def load_config(self): |
| 52 | """ |
| 53 | This method is used to load the configuration from one or several input(s). |
| 54 | Custom Command line, configuration file. |
| 55 | You have to override this method in your class. |
| 56 | """ |
| 57 | raise NotImplementedError |
| 58 | |
| 59 | def reload(self): |
| 60 | self.do_load_config() |