Skip to content

Commit 78e9a39

Browse files
authored
fixing EmailStr import in README examples (#600)
1 parent 076315f commit 78e9a39

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Check out this example of modeling customer data with Redis OM. First, we create
9393
import datetime
9494
from typing import Optional
9595

96-
from pydantic import EmailStr
96+
from pydantic.v1 import EmailStr
9797

9898
from redis_om import HashModel
9999

@@ -113,7 +113,7 @@ Now that we have a `Customer` model, let's use it to save customer data to Redis
113113
import datetime
114114
from typing import Optional
115115

116-
from pydantic import EmailStr
116+
from pydantic.v1 import EmailStr
117117

118118
from redis_om import HashModel
119119

@@ -168,7 +168,7 @@ For example, because we used the `EmailStr` type for the `email` field, we'll ge
168168
import datetime
169169
from typing import Optional
170170

171-
from pydantic import EmailStr, ValidationError
171+
from pydantic.v1 import EmailStr, ValidationError
172172

173173
from redis_om import HashModel
174174

@@ -222,7 +222,7 @@ To show how this works, we'll make a small change to the `Customer` model we def
222222
import datetime
223223
from typing import Optional
224224

225-
from pydantic import EmailStr
225+
from pydantic.v1 import EmailStr
226226

227227
from redis_om import (
228228
Field,

0 commit comments

Comments
 (0)