Skip to content

Commit f2288eb

Browse files
authored
Merge pull request #97 from ikmckenz/fix-style
Fix style
2 parents a59353b + e4fda3f commit f2288eb

31 files changed

+2181
-1935
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,12 @@ install:
2424
# Install BluePy for Ganglion because Travis runs Linux
2525
- pip install bluepy
2626
# Install test and coverage requirements
27-
- pip install codecov mock nose coverage
27+
- pip install codecov mock nose coverage pylint
2828

2929
# Run tests
3030
script:
3131
- python setup.py install
3232
- nosetests --with-coverage --cover-package=openbci
3333
after_success:
3434
- codecov
35+
- pylint openbci

externals/mne_openbci.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# License: BSD (3-clause)
66

77
import warnings
8+
89
np = None
910
try:
1011
import numpy as np
@@ -18,6 +19,7 @@
1819
except ImportError:
1920
raise ImportError('MNE is needed to use function.')
2021

22+
2123
class RawOpenBCI(_BaseRaw):
2224
"""Raw object from OpenBCI file
2325
@@ -59,6 +61,7 @@ class RawOpenBCI(_BaseRaw):
5961
--------
6062
mne.io.Raw : Documentation of attribute and methods.
6163
"""
64+
6265
@verbose
6366
def __init__(self, input_fname, montage=None, eog=None,
6467
misc=(-3, -2, -1), stim_channel=None, scale=1e-6, sfreq=250,

0 commit comments

Comments
 (0)