Skip to content

Commit da06b3b

Browse files
committed
[ModelicaSystem] fix pylint message
OMPython/ModelicaSystem.py:1787:16: W0612: Unused variable 'key' (unused-variable) => replace items() by values()
1 parent 111d877 commit da06b3b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

OMPython/ModelicaSystem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1800,7 +1800,7 @@ def linearize(
18001800
)
18011801

18021802
if self._inputs:
1803-
for key, data in self._inputs.items():
1803+
for data in self._inputs.values():
18041804
if data is not None:
18051805
for value in data:
18061806
if value[0] < float(self._simulate_options["startTime"]):

0 commit comments

Comments
 (0)