(
self,
*,
array_format: ArrayFormat = "repeat",
nested_format: NestedFormat = "brackets",
)
| 21 | nested_format: NestedFormat |
| 22 | |
| 23 | def __init__( |
| 24 | self, |
| 25 | *, |
| 26 | array_format: ArrayFormat = "repeat", |
| 27 | nested_format: NestedFormat = "brackets", |
| 28 | ) -> None: |
| 29 | self.array_format = array_format |
| 30 | self.nested_format = nested_format |
| 31 | |
| 32 | def parse(self, query: str) -> Mapping[str, object]: |
| 33 | # Note: custom format syntax is not supported yet |
nothing calls this directly
no outgoing calls
no test coverage detected