We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 974a98c commit b1a4821Copy full SHA for b1a4821
aws_lambda_powertools/utilities/parser/pydantic.py
@@ -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