Skip to content

Commit 7d04966

Browse files
Add optionality
1 parent dc00e44 commit 7d04966

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

policyengine/utils/data_download.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
class DataFile(BaseModel):
1010
filepath: str
1111
huggingface_org: str
12-
huggingface_repo: str = None
13-
gcs_bucket: str = None
12+
huggingface_repo: str | None = None
13+
gcs_bucket: str | None = None
1414

1515

1616
def download(

0 commit comments

Comments
 (0)