More pep8 fixes. A tiny bit of refactoring.

This commit is contained in:
Storm Dragon
2025-07-07 00:42:23 -04:00
parent d28c18faed
commit 3390c25dfe
343 changed files with 11092 additions and 7582 deletions

View File

@ -2,12 +2,12 @@
# -*- coding: utf-8 -*-
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
# By Chrys, Storm Dragon, and contributors.
from fenrirscreenreader.core.i18n import _
class command():
class command:
def __init__(self):
pass
@ -18,11 +18,11 @@ class command():
pass
def get_description(self):
return _('get current help message')
return _("get current help message")
def run(self):
text = self.env['runtime']['HelpManager'].get_help_for_current_index()
self.env['runtime']['OutputManager'].present_text(text, interrupt=True)
text = self.env["runtime"]["HelpManager"].get_help_for_current_index()
self.env["runtime"]["OutputManager"].present_text(text, interrupt=True)
def set_callback(self, callback):
pass

View File

@ -2,12 +2,12 @@
# -*- coding: utf-8 -*-
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
# By Chrys, Storm Dragon, and contributors.
from fenrirscreenreader.core.i18n import _
class command():
class command:
def __init__(self):
pass
@ -18,12 +18,12 @@ class command():
pass
def get_description(self):
return _('get next help message')
return _("get next help message")
def run(self):
self.env['runtime']['HelpManager'].next_index()
text = self.env['runtime']['HelpManager'].get_help_for_current_index()
self.env['runtime']['OutputManager'].present_text(text, interrupt=True)
self.env["runtime"]["HelpManager"].next_index()
text = self.env["runtime"]["HelpManager"].get_help_for_current_index()
self.env["runtime"]["OutputManager"].present_text(text, interrupt=True)
def set_callback(self, callback):
pass

View File

@ -2,12 +2,12 @@
# -*- coding: utf-8 -*-
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
# By Chrys, Storm Dragon, and contributors.
from fenrirscreenreader.core.i18n import _
class command():
class command:
def __init__(self):
pass
@ -18,12 +18,12 @@ class command():
pass
def get_description(self):
return _('get prev help message')
return _("get prev help message")
def run(self):
self.env['runtime']['HelpManager'].prev_index()
text = self.env['runtime']['HelpManager'].get_help_for_current_index()
self.env['runtime']['OutputManager'].present_text(text, interrupt=True)
self.env["runtime"]["HelpManager"].prev_index()
text = self.env["runtime"]["HelpManager"].get_help_for_current_index()
self.env["runtime"]["OutputManager"].present_text(text, interrupt=True)
def set_callback(self, callback):
pass