Skip to content

Commit ffa0405

Browse files
committed
examples: standalone: snmp-eaton-ups: remove unnecessary brackets
1 parent 5fe0c5e commit ffa0405

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/standalone/snmp-eaton-ups/script.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ async def snmp_get(self, oid):
124124
self.transport_target,
125125
oid,
126126
)
127-
(error_indication, error_status, error_index, var_binds) = result
127+
error_indication, error_status, error_index, var_binds = result
128128

129129
if error_indication:
130130
await self.log.error(f"error indication: {error_indication}")

0 commit comments

Comments
 (0)