eegdash 0.3.6.dev182011805__py3-none-any.whl → 0.3.7__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of eegdash might be problematic. Click here for more details.

eegdash/__init__.py CHANGED
@@ -1,10 +1,11 @@
1
1
  from .api import EEGDash, EEGDashDataset
2
2
  from .dataset import EEGChallengeDataset
3
- from .utils import __init__mongo_client
3
+ from .hbn import preprocessing
4
+ from .utils import _init_mongo_client
4
5
 
5
- __init__mongo_client()
6
+ _init_mongo_client()
6
7
 
7
8
 
8
- __all__ = ["EEGDash", "EEGDashDataset", "EEGChallengeDataset"]
9
+ __all__ = ["EEGDash", "EEGDashDataset", "EEGChallengeDataset", "preprocessing"]
9
10
 
10
- __version__ = "0.3.6.dev182011805"
11
+ __version__ = "0.3.7"