add --config by default when adding config options to a parser
This commit is contained in:
parent
5b5eaaadac
commit
8af831ae3c
|
@ -25,6 +25,7 @@ class Config(attrdict.AttrDict):
|
||||||
|
|
||||||
def merge_args(self, args):
|
def merge_args(self, args):
|
||||||
args_dict = vars(args)
|
args_dict = vars(args)
|
||||||
|
args_dict.pop("config") # exclude config file path
|
||||||
nested_dict = flatdict.FlatDict(args_dict, delimiter=".").as_dict()
|
nested_dict = flatdict.FlatDict(args_dict, delimiter=".").as_dict()
|
||||||
self.update(nested_dict)
|
self.update(nested_dict)
|
||||||
|
|
||||||
|
@ -36,6 +37,9 @@ class Config(attrdict.AttrDict):
|
||||||
return flat
|
return flat
|
||||||
|
|
||||||
def add_options_to_parser(self, parser):
|
def add_options_to_parser(self, parser):
|
||||||
|
parser.add_argument(
|
||||||
|
"--config", type=str,
|
||||||
|
help="extra config file to override the default config")
|
||||||
flat = self.flatten()
|
flat = self.flatten()
|
||||||
g = parser.add_argument_group("config file options")
|
g = parser.add_argument_group("config file options")
|
||||||
for k, v in flat.items():
|
for k, v in flat.items():
|
||||||
|
|
Loading…
Reference in New Issue