Skip to content

Commit

Permalink
Fix import bug
Browse files Browse the repository at this point in the history
  • Loading branch information
methylDragon committed Jul 9, 2019
1 parent abc2577 commit e55eb79
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 2 deletions.
8 changes: 8 additions & 0 deletions PyPI/HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# EmotivCortex2Client Changelog

## v1.0.1 - 2019_07_09

### Changed

- Fixed submodule import bug



## v1.0.0 - 2019_07_09

### Added
Expand Down
1 change: 1 addition & 0 deletions cortex2/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from .emotiv_cortex2_client import EmotivCortex2Client

__all__ = [
'EmotivCortex2Client'
]
Expand Down
2 changes: 1 addition & 1 deletion cortex2/emotiv_cortex2_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"""

from .lib.WebsocketClient import WebsocketClient
from .lib import WebsocketClient

from collections import deque, OrderedDict
from threading import Thread, Event
Expand Down
1 change: 1 addition & 0 deletions cortex2/lib/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .WebsocketClient import *
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
HISTORY = history_file.read()

setup_args = {'name': "cortex2",
'version': "1.0.0.post3",
'version': "1.0.1",
'description': "Comprehensive threaded, asynchronous Python client for the Emotiv EEG Cortex 2 API",
'long_description_content_type': "text/markdown",
'long_description': README + '\n\n' + HISTORY,
Expand Down

0 comments on commit e55eb79

Please sign in to comment.