From a4f3c72175d0986e5e17abeddbc27e27c103c672 Mon Sep 17 00:00:00 2001 From: Anton Lee <37557393+tachyonicClock@users.noreply.github.com> Date: Tue, 2 Apr 2024 08:46:42 +1300 Subject: [PATCH] Fix failed tests on windows (#30) --- src/capymoa/stream/stream.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/capymoa/stream/stream.py b/src/capymoa/stream/stream.py index cf9a1ec0..4e43645c 100644 --- a/src/capymoa/stream/stream.py +++ b/src/capymoa/stream/stream.py @@ -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: