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 e6ed5a5 commit e84a4ebCopy full SHA for e84a4eb
1 file changed
tests/test_terminal.py
@@ -71,13 +71,13 @@ def _arguments(self, char):
71
# is wait for the 'n' argument.
72
return self.dispatch(self.report_escape[self.current])
73
else:
74
- return super(ReportingStream, self)._arguments(char)
+ return super()._arguments(char)
75
76
77
class ReportingScreen(Screen):
78
def __init__(self, *args, **kwargs):
79
self._report_file = FakeStdin()
80
- super(ReportingScreen, self).__init__(*args, **kwargs)
+ super().__init__(*args, **kwargs)
81
82
def report_cursor_position(self):
83
# cursor position is 1-indexed in the ANSI escape sequence API
0 commit comments