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 96548ab commit 696fcd5Copy full SHA for 696fcd5
lib/vsc/utils/script_tools.py
@@ -34,7 +34,7 @@
34
import os
35
import sys
36
37
-from configargparse import ConfigArgParser
+from configargparse import ArgParser
38
from copy import deepcopy
39
40
import logging
@@ -105,12 +105,12 @@ def _merge_options(options):
105
106
class ConfigOption:
107
"""
108
- Allow using ConfigArgParser instead of GeneralOption but with the same
+ Allow using configargparse.ArgParser instead of GeneralOption but with the same
109
options-specifying syntax
110
111
112
def __init__(self, options, config_files=None):
113
- self.parser = ConfigArgParser(auto_env_var_prefix='')
+ self.parser = ArgParser(auto_env_var_prefix='')
114
115
if config_files:
116
self.parser.config_file_parser(config_files)
0 commit comments