Skip to content

Commit

Permalink
Fix CI complaint 👾
Browse files Browse the repository at this point in the history
  • Loading branch information
mpluess committed Sep 10, 2024
1 parent e92fdbc commit 4467aac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions karabo/data/external_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ def download(
os.makedirs(download_dir, exist_ok=True)

desc = f"Downloading {url} to {local_file_path}"
response.raw.read = functools.partial( # noqa
response.raw.read, decode_content=True # noqa
) # noqa
response.raw.read = functools.partial(
response.raw.read, decode_content=True
) # type: ignore
with tqdm.wrapattr(
response.raw,
"read",
Expand Down

0 comments on commit 4467aac

Please sign in to comment.