Remove duplicate declaration of package root

This commit is contained in:
Matt Wobensmith 2019-10-09 15:25:20 -07:00 коммит произвёл mwobensmith
Родитель ecb9f062ed
Коммит 1349417209
1 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

@ -74,6 +74,7 @@ class _Settings:
DEFAULT_UI_DELAY_SHORT = 0.5
DEFAULT_UI_DELAY_LONG = 2.5
DEFAULT_SYSTEM_DELAY = 5
PACKAGE_ROOT = os.path.realpath(os.path.split(__file__)[0] + "/../..")
def __init__(
self,
@ -206,10 +207,6 @@ class _Settings:
def virtual_keyboard(self, value):
self._virtual_keyboard = value
@property
def package_root(self):
return os.path.realpath(os.path.split(__file__)[0] + "/../..")
@property
def code_root(self):
return self._code_root