Skip to content

Commit 3bc4e50

Browse files
committed
fix
1 parent e380a03 commit 3bc4e50

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/bitbots_rl_walk/nodes/rl_node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def config(self):
108108

109109
self._subs = []
110110

111-
for key, value in self.__dict__.values():
111+
for (key, value) in self.__dict__.values():
112112
if type(value) is Subscription:
113113
self._subs.append(key)
114114

0 commit comments

Comments
 (0)