(self, argv=None)
| 124 | self.bar = Bar(config=self.config) |
| 125 | |
| 126 | def initialize(self, argv=None): |
| 127 | self.parse_command_line(argv) |
| 128 | if self.config_file: |
| 129 | self.load_config_file(self.config_file) |
| 130 | self.load_config_environ() |
| 131 | self.init_foo() |
| 132 | self.init_bar() |
| 133 | |
| 134 | def start(self): |
| 135 | print("app.config:") |