Skip to content

Commit eb3153f

Browse files
author
Ran Isenberg
committed
fix: poetry update again + pydantic as optional
1 parent acac687 commit eb3153f

File tree

6 files changed

+152
-89
lines changed

6 files changed

+152
-89
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ target:
55
dev:
66
pip install --upgrade pip poetry pre-commit
77
poetry install
8-
poetry install --extras "advanced_parser"
8+
poetry install --extras "pydantic"
99
pre-commit install
1010

1111
dev-docs:

aws_lambda_powertools/utilities/advanced_parser/schemas/dynamodb.py

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
from typing import Any, Dict, List, Optional
33

44
from pydantic import BaseModel, root_validator
5+
56
from typing_extensions import Literal
67

78

aws_lambda_powertools/utilities/advanced_parser/schemas/sqs.py

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
from typing import Dict, List, Optional
44

55
from pydantic import BaseModel, root_validator, validator
6+
67
from typing_extensions import Literal
78

89

0 commit comments

Comments
 (0)