Skip to content

Commit

Permalink
docs: fix python docs (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackgerrits authored Jul 11, 2023
1 parent c4bc514 commit e457426
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions reductionml-python/python/reductionml/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
from ._reductionml import *
from . import _reductionml
import typing

__doc__ = _reductionml.__doc__

# FIXME: without this stubtest fails
if not typing.TYPE_CHECKING:
if hasattr(_reductionml, "__all__"):
__all__ = _reductionml.__all__

0 comments on commit e457426

Please sign in to comment.