FoldString -> ParamFolded

This commit is contained in:
jesopo 2020-04-05 17:40:22 +01:00
parent d837529698
commit 84b374f43d

View file

@ -65,7 +65,7 @@ class ParamLiteral(IMatchResponseParam):
def match(self, server: IServer, arg: str) -> bool:
return self._value == arg
class FoldString(IMatchResponseParam):
class ParamFolded(IMatchResponseParam):
def __init__(self, value: str):
self._value = value
self._folded: Optional[str] = None