Skip to content

Commit 55c2c3a

Browse files
Bastian-KrauseEmantor
authored andcommitted
labgrid/protocol: run ruff format
Signed-off-by: Bastian Krause <[email protected]>
1 parent 8576744 commit 55c2c3a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

labgrid/protocol/infoprotocol.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class InfoProtocol(abc.ABC):
55
"""Abstract class providing the InfoProtocol interface"""
66

77
@abc.abstractmethod
8-
def get_ip(self, interface: str = 'eth0'):
8+
def get_ip(self, interface: str = "eth0"):
99
"""Implementations should return the IP address for the supplied
1010
interface."""
1111
raise NotImplementedError

labgrid/protocol/resetprotocol.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import abc
22

3+
34
class ResetProtocol(abc.ABC):
45
@abc.abstractmethod
56
def reset(self):

0 commit comments

Comments
 (0)