Skip to content

Commit

Permalink
Re-exports doesn't work as in Rust
Browse files Browse the repository at this point in the history
  • Loading branch information
chrsan committed Apr 27, 2024
1 parent d3c66f7 commit 02d7637
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion bindings/python/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# ruff: noqa: F401 F821
from .lib import Font # type: ignore
from .types import FontStyle, Glyph, Path, PathVerb, Point, Transform # type: ignore
from .types import FontStyle, Glyph, Path, PathVerb, Point, Transform

del lib
del types

__all__ = [
"Font",
"FontStyle",
"Glyph",
"Path",
"PathVerb",
"Point",
"Transform",
]

0 comments on commit 02d7637

Please sign in to comment.