Skip to content

Commit c9c6fe8

Browse files
committed
fix mypy error
1 parent 82ab3ae commit c9c6fe8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

databunkerpro/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def _make_request(
7070
try:
7171
response = requests.request(method, url, headers=headers, data=body)
7272
response.raise_for_status()
73-
result = response.json()
73+
result: Dict[str, Any] = response.json()
7474

7575
if not response.ok:
7676
if result.get("status"):

0 commit comments

Comments
 (0)