Skip to content

Commit f31f3da

Browse files
driver/rawnetworkinterfacedriver: run ruff format
Signed-off-by: Bastian Krause <[email protected]>
1 parent c1aec37 commit f31f3da

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

labgrid/driver/rawnetworkinterfacedriver.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -170,12 +170,7 @@ def get_statistics(self):
170170
"""
171171
Returns basic interface statistics of bound network interface resource.
172172
"""
173-
cmd = self.iface.command_prefix + [
174-
"ip",
175-
"--json",
176-
"-stats", "-stats",
177-
"link", "show",
178-
self.iface.ifname]
173+
cmd = self.iface.command_prefix + ["ip", "--json", "-stats", "-stats", "link", "show", self.iface.ifname]
179174
output = processwrapper.check_output(cmd)
180175
return json.loads(output)[0]
181176

0 commit comments

Comments
 (0)