Skip to content

Commit

Permalink
Add combosciplex
Browse files Browse the repository at this point in the history
Signed-off-by: zethson <[email protected]>
  • Loading branch information
Zethson committed Jan 25, 2024
1 parent a0797a3 commit f449682
Show file tree
Hide file tree
Showing 4 changed files with 81 additions and 57 deletions.
2 changes: 2 additions & 0 deletions docs/usage/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ pt.tl.cool_fancy_tool()
data.bhattacherjee
data.burczynski_crohn
data.chang_2021
data.combosciplex
data.cinemaot_example
data.datlinger_2017
data.datlinger_2021
data.dialogue_example
Expand Down
1 change: 1 addition & 0 deletions pertpy/data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
burczynski_crohn,
chang_2021,
cinemaot_example,
combosciplex,
datlinger_2017,
datlinger_2021,
dialogue_example,
Expand Down
4 changes: 1 addition & 3 deletions pertpy/data/_dataloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from pathlib import Path
from random import choice
from string import ascii_lowercase
from typing import Union
from zipfile import ZipFile

import requests
Expand Down Expand Up @@ -64,5 +63,4 @@ def _download( # pragma: no cover
output_path = output_path or tempfile.gettempdir()
with ZipFile(download_to_path, "r") as zip_obj:
zip_obj.extractall(path=output_path)
extracted = zip_obj.namelist()
print(extracted)
zip_obj.namelist()
Loading

0 comments on commit f449682

Please sign in to comment.