pipes.quote takes AnyStr (#4173)

This commit is contained in:
Dakkaron
2020-06-04 12:37:57 +02:00
committed by GitHub
parent bd35cd6bf8
commit 3438cb92e1

View File

@@ -1,4 +1,4 @@
from typing import Any, IO
from typing import Any, IO, AnyStr
class Template:
def __init__(self) -> None: ...
@@ -10,4 +10,4 @@ class Template:
def open(self, file: str, mode: str) -> IO[Any]: ...
def copy(self, infile: str, outfile: str) -> None: ...
def quote(s: str) -> str: ...
def quote(s: AnyStr) -> AnyStr: ...