Skip to content

Commit

Permalink
pep8 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
zm711 committed Oct 20, 2023
1 parent 5dfabd8 commit 6ed32d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neo/test/iotest/test_asciisignalio.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def test_csv_expect_success(self):
(-64.6, -64.2, -77.0, 0.7),
(-64.3, -64.0, -99.9, 0.8)
]
with open(filename,'w', newline='') as csvfile:
with open(filename, 'w', newline='') as csvfile:
writer = csv.writer(csvfile, delimiter=',',
quotechar='|', quoting=csv.QUOTE_MINIMAL)
for row in sample_data:
Expand Down

0 comments on commit 6ed32d2

Please sign in to comment.