Replace typing.Text with str.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2021-08-24 19:50:05 -07:00
parent 189cf48573
commit 626359596e
4 changed files with 12 additions and 12 deletions

View file

@ -1,4 +1,4 @@
import pkgutil
from typing import Iterable, Text
from typing import Iterable
__path__ = pkgutil.extend_path(__path__, __name__) # type: Iterable[Text]
__path__ = pkgutil.extend_path(__path__, __name__) # type: Iterable[str]