We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbf7b57 commit b569dd9Copy full SHA for b569dd9
2 files changed
deshima_rawdata/cli.py
@@ -49,7 +49,7 @@ def download(
49
Path of the downloaded raw data.
50
51
"""
52
- file_name = Path(DATA_LIST["File name"][str(obsid)])
+ file_name = DATA_LIST["File name"][str(obsid)] # type: ignore
53
url = f"{DATA_REPO_URL}/raw/{tag}/data/{file_name}"
54
55
if not (response := get(url, stream=True)).ok:
pyproject.toml
@@ -25,6 +25,9 @@ pytest = "^7.4"
25
[tool.poetry.scripts]
26
deshima-rawdata = "deshima_rawdata.cli:main"
27
28
+[tool.pyright]
29
+typeCheckingMode = "basic"
30
+
31
[build-system]
32
requires = ["poetry-core"]
33
build-backend = "poetry.core.masonry.api"
0 commit comments