mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-10 09:17:48 +01:00
17 lines
447 B
Python
17 lines
447 B
Python
|
from typing import Optional
|
||
|
|
||
|
class _Quoter:
|
||
|
def __init__(
|
||
|
self,
|
||
|
*,
|
||
|
safe: str = ...,
|
||
|
protected: str = ...,
|
||
|
qs: bool = ...,
|
||
|
requote: bool = ...
|
||
|
) -> None: ...
|
||
|
def __call__(self, val: Optional[str] = ...) -> Optional[str]: ...
|
||
|
|
||
|
class _Unquoter:
|
||
|
def __init__(self, *, unsafe: str = ..., qs: bool = ...) -> None: ...
|
||
|
def __call__(self, val: Optional[str] = ...) -> Optional[str]: ...
|