626359596e
Signed-off-by: Anders Kaseorg <anders@zulip.com>
5 lines
118 B
Python
5 lines
118 B
Python
import pkgutil
|
|
from typing import Iterable
|
|
|
|
__path__ = pkgutil.extend_path(__path__, __name__) # type: Iterable[str]
|