Skip to content
This repository was archived by the owner on Aug 30, 2021. It is now read-only.

Commit d8a3bce

Browse files
Make fields on address optional (#3)
1 parent 3306f7c commit d8a3bce

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

vaccine_feed_ingest_schema/location.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ class Address(BaseModel):
2020
},
2121
"""
2222

23-
street1: str
23+
street1: Optional[str]
2424
street2: Optional[str]
25-
city: str
26-
state: str
27-
zip: str
25+
city: Optional[str]
26+
state: Optional[str]
27+
zip: Optional[str]
2828

2929

3030
class LatLng(BaseModel):

0 commit comments

Comments
 (0)