(self)
| 137 | # return "," |
| 138 | |
| 139 | def variable_prefix(self) -> str: |
| 140 | if self == Operator.reserved: |
| 141 | return "" |
| 142 | return t.cast(str, self.value) |
| 143 | # match self: |
| 144 | # case Operator.reserved: |
| 145 | # return "" |
| 146 | # case _: |
| 147 | # return t.cast(str, self.value) |
| 148 | |
| 149 | def _always_quote(self, value: str) -> str: |
| 150 | return quote(value, "") |