Skip to content

Commit

Permalink
chore: typing
Browse files Browse the repository at this point in the history
  • Loading branch information
Jhsmit committed Jan 2, 2024
1 parent b15f708 commit dddc6f1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion hdxms_datasets/datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,11 @@ class HDXDataSet(object):

@classmethod
def from_spec(
cls, hdx_spec: dict, data_dir: Path, data_id=Optional[str], metadata: Optional[dict] = None
cls,
hdx_spec: dict,
data_dir: Path,
data_id: Optional[str] = None,
metadata: Optional[dict] = None,
):
metadata = metadata or {}
data_id = data_id or uuid.uuid4().hex
Expand Down

0 comments on commit dddc6f1

Please sign in to comment.