Skip to content
This repository was archived by the owner on Nov 28, 2025. It is now read-only.

Commit 4db3057

Browse files
committed
[Python 3] map returns an iterator
1 parent c2dcb9b commit 4db3057

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dynamic_graph/entity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def displaySignals(self):
140140
"""
141141
Print the list of signals into standard output: temporary.
142142
"""
143-
signals = self.signals()
143+
signals = list(self.signals())
144144
if len(signals) == 0:
145145
display("--- <" + self.name + "> has no signal")
146146
else:

0 commit comments

Comments
 (0)