Skip to content

Commit 20176bc

Browse files
authored
Merge branch 'main' into plot_example
2 parents 3a50ea4 + d7f2f97 commit 20176bc

File tree

5 files changed

+139
-105
lines changed

5 files changed

+139
-105
lines changed

docs/usage/usage.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ pt.tl.cool_fancy_tool()
2929
data.bhattacherjee
3030
data.burczynski_crohn
3131
data.chang_2021
32+
data.combosciplex
33+
data.cinemaot_example
3234
data.datlinger_2017
3335
data.datlinger_2021
3436
data.dialogue_example

pertpy/data/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
burczynski_crohn,
88
chang_2021,
99
cinemaot_example,
10+
combosciplex,
1011
datlinger_2017,
1112
datlinger_2021,
1213
dialogue_example,

pertpy/data/_dataloader.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
from pathlib import Path
33
from random import choice
44
from string import ascii_lowercase
5-
from typing import Union
65
from zipfile import ZipFile
76

87
import requests
@@ -64,5 +63,4 @@ def _download( # pragma: no cover
6463
output_path = output_path or tempfile.gettempdir()
6564
with ZipFile(download_to_path, "r") as zip_obj:
6665
zip_obj.extractall(path=output_path)
67-
extracted = zip_obj.namelist()
68-
print(extracted)
66+
zip_obj.namelist()

0 commit comments

Comments
 (0)