Skip to content

Commit

Permalink
Join bytes when cleaning wavs
Browse files Browse the repository at this point in the history
Fixes: leonjza#5
  • Loading branch information
s1shed committed Feb 25, 2023
1 parent c4fbd22 commit 5ef624d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ooktools/commands/converstions.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@ def clean_pwm_wave(source, destination):
frames.append(struct.pack('h', value))

click.secho('Writing output to file: {}'.format(destination))
output_wave.writeframes(''.join(frames))
output_wave.writeframes(b''.join(frames))

return

0 comments on commit 5ef624d

Please sign in to comment.