We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82d8689 commit 4d0cc5bCopy full SHA for 4d0cc5b
1 file changed
python_package/examples/tests/eego_impedances_and_eeg.py
@@ -17,7 +17,7 @@
17
# Get impedance data
18
board.config_board('impedance_mode:1')
19
board.start_stream()
20
- for i in range(5):
+ for _ in range(5):
21
time.sleep(1)
22
data = board.get_board_data() # get all data and remove it from internal buffer
23
print(f'{data.shape[0]} channels x {data.shape[1]} samples')
@@ -26,7 +26,7 @@
26
# Get EEG data
27
board.config_board('impedance_mode:0')
28
29
- for i in range(3):
+ for _ in range(3):
30
31
32
0 commit comments