Skip to content

Commit 9963fca

Browse files
committed
Fix an f-string so that Python 3.11 can accept it
1 parent 3064265 commit 9963fca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python/src/simuhw/_analyzer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def __iter__(self) -> Iterator[Signal]:
8282
return self._signals.__iter__()
8383

8484
def __str__(self) -> str:
85-
return f'{self.__class__.__name__}(\'{self._name}\', {self._width}, [{', '.join((str(g) for g in self._signals))}])'
85+
return f'{self.__class__.__name__}(\'{self._name}\', {self._width}, [{", ".join((str(g) for g in self._signals))}])'
8686

8787

8888
class ChannelProbe(Probe):

0 commit comments

Comments
 (0)