More pep8 fixes. A tiny bit of refactoring.
This commit is contained in:
@ -2,13 +2,13 @@
|
||||
# -*- 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
|
||||
|
||||
@ -19,20 +19,24 @@ class command():
|
||||
pass
|
||||
|
||||
def get_description(self):
|
||||
return _('get previous quick menu entry')
|
||||
return _("get previous quick menu entry")
|
||||
|
||||
def run(self):
|
||||
menu = ''
|
||||
value = ''
|
||||
if self.env['runtime']['QuickMenuManager'].prev_entry():
|
||||
menu = self.env['runtime']['QuickMenuManager'].get_current_entry()
|
||||
if menu != '':
|
||||
value = self.env['runtime']['QuickMenuManager'].get_current_value()
|
||||
self.env['runtime']['OutputManager'].present_text(
|
||||
menu + ' ' + value, interrupt=True)
|
||||
menu = ""
|
||||
value = ""
|
||||
if self.env["runtime"]["QuickMenuManager"].prev_entry():
|
||||
menu = self.env["runtime"]["QuickMenuManager"].get_current_entry()
|
||||
if menu != "":
|
||||
value = self.env["runtime"][
|
||||
"QuickMenuManager"
|
||||
].get_current_value()
|
||||
self.env["runtime"]["OutputManager"].present_text(
|
||||
menu + " " + value, interrupt=True
|
||||
)
|
||||
else:
|
||||
self.env['runtime']['OutputManager'].present_text(
|
||||
_('Quick menu not available'), interrupt=True)
|
||||
self.env["runtime"]["OutputManager"].present_text(
|
||||
_("Quick menu not available"), interrupt=True
|
||||
)
|
||||
|
||||
def set_callback(self, callback):
|
||||
pass
|
||||
|
Reference in New Issue
Block a user