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,17 +19,22 @@ class command():
|
||||
pass
|
||||
|
||||
def get_description(self):
|
||||
return 'No description found'
|
||||
return "No description found"
|
||||
|
||||
def run(self):
|
||||
if self.env['input']['oldCapsLock'] == self.env['input']['newCapsLock']:
|
||||
if (
|
||||
self.env["input"]["oldCapsLock"]
|
||||
== self.env["input"]["newCapsLock"]
|
||||
):
|
||||
return
|
||||
if self.env['input']['newCapsLock']:
|
||||
self.env['runtime']['OutputManager'].present_text(
|
||||
_("Capslock on"), interrupt=True)
|
||||
if self.env["input"]["newCapsLock"]:
|
||||
self.env["runtime"]["OutputManager"].present_text(
|
||||
_("Capslock on"), interrupt=True
|
||||
)
|
||||
else:
|
||||
self.env['runtime']['OutputManager'].present_text(
|
||||
_("Capslock off"), interrupt=True)
|
||||
self.env["runtime"]["OutputManager"].present_text(
|
||||
_("Capslock off"), interrupt=True
|
||||
)
|
||||
|
||||
def set_callback(self, callback):
|
||||
pass
|
||||
|
||||
Reference in New Issue
Block a user