We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed0921b commit ae37c27Copy full SHA for ae37c27
src/amulet_faulthandler/__init__.pyi
@@ -0,0 +1,10 @@
1
+from __future__ import annotations
2
+
3
+from . import _faulthandler, _version
4
5
+__all__: list[str] = ["install"]
6
7
+def _init() -> None: ...
8
+def install(path: os.PathLike | str | bytes) -> None: ...
9
10
+__version__: str
src/amulet_faulthandler/_faulthandler.pyi
@@ -0,0 +1,7 @@
+import types
+__all__: list[str] = ["init"]
+def init(m: types.ModuleType) -> None: ...
0 commit comments