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,21 +19,21 @@ class command():
|
||||
pass
|
||||
|
||||
def get_description(self):
|
||||
return 'No description found'
|
||||
return "No description found"
|
||||
|
||||
def load(self):
|
||||
return
|
||||
print('--------------')
|
||||
print('default')
|
||||
print('load new', self.env['screen']['new_application'])
|
||||
print('--------------')
|
||||
print("--------------")
|
||||
print("default")
|
||||
print("load new", self.env["screen"]["new_application"])
|
||||
print("--------------")
|
||||
|
||||
def unload(self):
|
||||
return
|
||||
print('--------------')
|
||||
print('default')
|
||||
print('unload old', self.env['screen']['oldApplication'])
|
||||
print('--------------')
|
||||
print("--------------")
|
||||
print("default")
|
||||
print("unload old", self.env["screen"]["oldApplication"])
|
||||
print("--------------")
|
||||
|
||||
def set_callback(self, callback):
|
||||
pass
|
||||
|
Reference in New Issue
Block a user