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.
2 parents dc1edb0 + 755324c commit b5d7537Copy full SHA for b5d7537
1 file changed
labgrid/util/expect.py
@@ -9,14 +9,10 @@ class PtxExpect(pexpect.spawn):
9
"""
10
11
def __init__(self, driver):
12
- "Initializes a pexpect spawn instanse with required configuration"
+ "Initializes a pexpect spawn instance with the required configuration"
13
self.driver = driver
14
self.linesep = b"\n"
15
- pexpect.spawn.__init__(
16
- self,
17
- None,
18
- maxread=1,
19
- )
+ pexpect.spawn.__init__(self, None, maxread=1)
20
21
def send(self, s):
22
"Write to underlying transport, return number of bytes written"
0 commit comments