Skip to content

Commit c1f081c

Browse files
committed
Add missing imports and update __all__ in __init__.py
1 parent 127358d commit c1f081c

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

function_schema/__init__.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
"""
22
A small utility to generate JSON schemas for python functions.
33
"""
4-
from .core import get_function_schema
4+
from .core import get_function_schema, guess_type, Doc, Annotated
55

66
__version__ = "0.4.1"
77
__all__ = (
8-
"get_function_schema",
98
"__version__",
9+
"get_function_schema",
10+
"guess_type",
11+
"Doc",
12+
"Annotated",
1013
)

0 commit comments

Comments
 (0)