We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8576744 commit 55c2c3aCopy full SHA for 55c2c3a
labgrid/protocol/infoprotocol.py
@@ -5,7 +5,7 @@ class InfoProtocol(abc.ABC):
5
"""Abstract class providing the InfoProtocol interface"""
6
7
@abc.abstractmethod
8
- def get_ip(self, interface: str = 'eth0'):
+ def get_ip(self, interface: str = "eth0"):
9
"""Implementations should return the IP address for the supplied
10
interface."""
11
raise NotImplementedError
labgrid/protocol/resetprotocol.py
@@ -1,5 +1,6 @@
1
import abc
2
3
+
4
class ResetProtocol(abc.ABC):
def reset(self):
0 commit comments