(self)
| 891 | |
| 892 | class ConfigurationGetter(object): |
| 893 | def getConfiguration(self): |
| 894 | self._prepareArgParser() |
| 895 | args = self._argparser.parse_args() |
| 896 | if args.port is None: |
| 897 | args.port = constants.DEFAULT_PORT |
| 898 | return args |
| 899 | |
| 900 | def _prepareArgParser(self): |
| 901 | self._argparser = argparse.ArgumentParser( |
no test coverage detected