Check if a value matches a given accept item.
(self, value: str, item: str)
| 65 | return (value != "*",) |
| 66 | |
| 67 | def _value_matches(self, value: str, item: str) -> bool: |
| 68 | """Check if a value matches a given accept item.""" |
| 69 | return item == "*" or item.lower() == value.lower() |
| 70 | |
| 71 | @t.overload |
| 72 | def __getitem__(self, key: str) -> float: ... |
no outgoing calls
no test coverage detected