Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/fixate/drivers/dso/agilent_mso_x.py
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ def waveform_values(self, signal, file_name="", file_type="csv"):
with open(file_name, "w") as f:
f.write("x,y\n")
for x_val, y_val in zip(x, y):
f.write(f"{x_val},{y_val}")
f.write(f"{x_val},{y_val}\n")

elif file_name and file_type == "bin":
raise NotImplementedError("Binary Output not implemented")
Expand Down
Loading