Skip to content

Commit

Permalink
Fix failed tests on windows (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
tachyonicClock authored Apr 1, 2024
1 parent 0f68d7d commit a4f3c72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/capymoa/stream/stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def __repr__(self) -> str:
return str(self)

def __str__(self):
return str(self._moa_header.toString().strip())
return str(self._moa_header.toString()).strip()


class Stream:
Expand Down

0 comments on commit a4f3c72

Please sign in to comment.