(self, value: str)
| 295 | """Strings that can contain escape sequences but can be a maximum of 1 character in length.""" |
| 296 | |
| 297 | def __init__(self, value: str): |
| 298 | super().__init__(value, length_limit=1) |
| 299 | |
| 300 | @staticmethod |
| 301 | def from_config(config_value: str, default: "EscapedString") -> "EscapedChar": |