Skip to content

Commit 0b9db16

Browse files
[BUG] Remove stale and duplicate entries from datasets __all__ (#303)
#### Reference Issues/PRs Fixes #301 #### What does this implement/fix? Explain your changes. The `__all__` list in `pyaptamer/datasets/__init__.py` contained two problems: - `"load_hf_dataset"` was left behind when the function was renamed to `load_hf_to_dataset` in #204. - `"load_from_rcsb"` appeared twice. This PR removes the stale `"load_hf_dataset"` entry and the duplicate `"load_from_rcsb"` entry. #### What should a reviewer concentrate their feedback on? Verify that the corrected `__all__` list matches the actual imports in the module. #### Did you add any tests for the change? No tests needed -- this is a metadata-only fix to the public API surface list. #### Any other comments? None. #### PR checklist - [x] The PR title starts with [BUG] - [x] Used pre-commit hooks Signed-off-by: Asish Kumar <officialasishkumar@gmail.com>
1 parent 6cdc02c commit 0b9db16

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

pyaptamer/datasets/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,11 @@
1717
"load_aptacom_full",
1818
"load_aptacom_x_y",
1919
"load_csv_dataset",
20-
"load_hf_dataset",
2120
"load_from_rcsb",
2221
"load_1brq",
2322
"load_5nu7",
2423
"load_1gnh",
2524
"load_pfoa",
26-
"load_from_rcsb",
2725
"load_li2014",
2826
"load_hf_to_dataset",
2927
]

0 commit comments

Comments
 (0)