(value, options: Collection, msg='Got %r, expected one of %s')
| 17 | |
| 18 | |
| 19 | def assert_config(value, options: Collection, msg='Got %r, expected one of %s'): |
| 20 | if value not in options: |
| 21 | raise ConfigurationError(msg % (value, options)) |
| 22 | |
| 23 | |
| 24 | class GrammarError(LarkError): |
no test coverage detected
searching dependent graphs…