Skip to content

Commit eb83aab

Browse files
authored
Merge pull request #31 from PayalLakra/bio_amptool
Fixing Syntactical error
2 parents 288671e + f42d3f6 commit eb83aab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chords.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def parse_data(ser, lsl_flag=False, csv_flag=False, verbose=False, run_time=None
239239
if csv_file:
240240
csv_writer = csv.writer(csv_file) # Create CSV writer
241241
csv_writer.writerow([f"Arduino Board: {board}"])
242-
csv_writer.writerow([f"Sampling Rate (samples per second): {supported_boards[board]["sampling_rate"]}"])
242+
csv_writer.writerow([f"Sampling Rate (samples per second): {supported_boards[board]['sampling_rate']}"])
243243
csv_writer.writerow([]) # Blank row for separation
244244
csv_writer.writerow(['Counter', 'Channel1', 'Channel2', 'Channel3', 'Channel4', 'Channel5', 'Channel6']) # Write header
245245

0 commit comments

Comments
 (0)