(self, value: str)
| 147 | # return t.cast(str, self.value) |
| 148 | |
| 149 | def _always_quote(self, value: str) -> str: |
| 150 | return quote(value, "") |
| 151 | |
| 152 | def _only_quote_unquoted_characters(self, value: str) -> str: |
| 153 | if urllib.parse.unquote(value) == value: |