Skip to content

Commit c330fa8

Browse files
lint
1 parent 99973cd commit c330fa8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

bpython/test/test_crashers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def next(self):
7272
self.data = self.data[index + 4 :]
7373
self.transport.write(input.encode(encoding))
7474
self.state = next(self.states)
75-
elif self.data == '\x1b[6n':
75+
elif self.data == "\x1b[6n":
7676
# this is a cursor position query
7777
# respond that cursor is on row 2, column 1
7878
self.transport.write("\x1b[2;1R".encode(encoding))
@@ -98,7 +98,7 @@ def processExited(self, reason):
9898
f"bpython.{self.backend}",
9999
"--config",
100100
str(TEST_CONFIG),
101-
"-q", # prevents version greeting
101+
"-q", # prevents version greeting
102102
),
103103
env={
104104
"TERM": "vt100",

0 commit comments

Comments
 (0)