Update applicationManager.py
This commit is contained in:
parent
424a1fc535
commit
5277360b36
@ -14,8 +14,16 @@ class applicationManager():
|
|||||||
def shutdown(self):
|
def shutdown(self):
|
||||||
pass
|
pass
|
||||||
def getCurrentApplication(self):
|
def getCurrentApplication(self):
|
||||||
pass
|
currApp = self.environment['screenData']['newApplication'].upper()
|
||||||
|
if not currApp:
|
||||||
|
currApp == 'DEFAULT'
|
||||||
|
if currApp == '':
|
||||||
|
currApp == 'DEFAULT'
|
||||||
def getPrevApplication(self):
|
def getPrevApplication(self):
|
||||||
pass
|
prevApp = self.environment['screenData']['oldApplication'].upper()
|
||||||
|
if not prevApp:
|
||||||
|
prevApp == 'DEFAULT'
|
||||||
|
if prevApp == '':
|
||||||
|
prevApp == 'DEFAULT'
|
||||||
def isApplicationChange(self):
|
def isApplicationChange(self):
|
||||||
pass
|
return self.environment['screenData']['oldApplication'] != self.environment['screenData']['newApplication']
|
||||||
|
Loading…
Reference in New Issue
Block a user