Skip to content

Commit 6781086

Browse files
committed
mqtt: fix pylint warning about unused variable
1 parent 8ac97a9 commit 6781086

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

labgrid/driver/mqtt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def cycle(self):
8989
@Driver.check_active
9090
@step()
9191
def get(self):
92-
for retry in range(3):
92+
for _ in range(3):
9393
self._publish(self.power.power_topic, "")
9494
timeout = Timeout(1.0)
9595
while self._status is None:

0 commit comments

Comments
 (0)