(self, **kwargs)
| 3 | |
| 4 | class Parser(configparser.RawConfigParser): |
| 5 | def __init__(self, **kwargs): |
| 6 | kwargs["allow_no_value"] = True |
| 7 | configparser.RawConfigParser.__init__(self, **kwargs) |
| 8 | |
| 9 | def __remove_quotes(self, value): |
| 10 | quotes = ["'", '"'] |
nothing calls this directly
no outgoing calls
no test coverage detected