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