Skip to content

Commit b1a4821

Browse files
committed
improv: expose all pydantic imports
1 parent 974a98c commit b1a4821

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Pydantic has many utilities that some advanced customers typically use.
2+
# Importing what's currently in the docs would likely miss something.
3+
# As Pydantic export new types, new utilities, we will have to keep up
4+
# with a project that's not used in our core functionalities.
5+
# For this reason, we're relying on Pydantic's __all__ attr to allow customers
6+
# to use `from from aws_lambda_powertools.utilities.parser.pydantic import <anything>`
7+
8+
from pydantic import * # noqa: F403,F401

0 commit comments

Comments
 (0)