Skip to content

Commit ae7674d

Browse files
committed
missed field annotation update
1 parent 7ee5515 commit ae7674d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mp_api/client/core/settings.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
2-
import pathlib
32
from multiprocessing import cpu_count
3+
from pathlib import Path
44
from typing import List
55

66
from pydantic import Field
@@ -89,8 +89,8 @@ class MAPIClientSettings(BaseSettings):
8989
_MAX_LIST_LENGTH, description="Maximum length of query parameter list"
9090
)
9191

92-
LOCAL_DATASET_CACHE: str = Field(
93-
pathlib.Path("~/mp_datasets").expanduser(),
92+
LOCAL_DATASET_CACHE: Path = Field(
93+
Path("~/mp_datasets").expanduser(),
9494
description="Target directory for downloading full datasets",
9595
)
9696

0 commit comments

Comments
 (0)