remove some more unneeded return values

This commit is contained in:
chrys
2016-09-17 21:13:43 +02:00
parent 0729d2daf2
commit 5ad6cbbb68
7 changed files with 19 additions and 24 deletions

View File

@ -10,10 +10,10 @@ class driver():
self.vcsaDevicePath = '/dev/vcsa'
def initialize(self, environment):
return environment
pass
def shutdown(self, environment):
return environment
pass
def insert_newlines(self, string, every=64):
return '\n'.join(string[i:i+every] for i in range(0, len(string), every))
@ -26,7 +26,6 @@ class driver():
currScreenFile.close()
except Exception as e:
environment['runtime']['debug'].writeDebugOut(environment,str(e),debug.debugLevel.ERROR)
return currScreen
def getIgnoreScreens(self):
@ -114,5 +113,3 @@ class driver():
environment['screenData']['newDelta'] = ''.join(x[2:] for x in diffList if x.startswith('+ '))
environment['screenData']['newNegativeDelta'] = ''.join(x[2:] for x in diffList if x.startswith('- '))
return environment