Skip to content

Commit 15205c7

Browse files
committed
wip
1 parent e3d48dc commit 15205c7

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ flamegraph.svg
55
.venv
66
__pycache__
77
*.so
8-
wheelhouse
8+
wheelhouse
9+
wingfoil.html
Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
from . import _wingfoil as _ext
2+
from ._wingfoil import *
13

2-
from ._wingfoil import Node, ticker, constant, __version__
3-
4-
from .stream import Stream
4+
__doc__ = _ext.__doc__
5+
__version__ = getattr(_ext, "__version__", None)
6+
__all__ = _ext.__all__

0 commit comments

Comments
 (0)