mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-01 00:53:23 +08:00
Annotate textwrap.dedent (#1295)
This commit is contained in:
committed by
Jelle Zijlstra
parent
adae702fc1
commit
787e423468
@@ -1,4 +1,4 @@
|
||||
from typing import Any
|
||||
from typing import Any, AnyStr
|
||||
|
||||
class _unicode: ...
|
||||
|
||||
@@ -26,4 +26,4 @@ class TextWrapper:
|
||||
|
||||
def wrap(text, width=..., **kwargs): ...
|
||||
def fill(text, width=..., **kwargs): ...
|
||||
def dedent(text): ...
|
||||
def dedent(text: AnyStr) -> AnyStr: ...
|
||||
|
||||
Reference in New Issue
Block a user