__unicode__ always returns str (#9248)

This commit is contained in:
Nikita Sobolev
2022-11-22 14:52:03 +03:00
committed by GitHub
parent a3de404e1d
commit 40d4676d6a
2 changed files with 2 additions and 2 deletions

View File

@@ -41,7 +41,7 @@ class FragmentWrapper:
def __getitem__(self, key): ...
def __bool__(self) -> bool: ...
def getparent(self) -> None: ...
def __unicode__(self): ...
def __unicode__(self) -> str: ...
def __len__(self) -> int: ...
class TreeWalker(NonRecursiveTreeWalker):