pep8 - round 3

This commit is contained in:
Rob Weber
2019-11-26 10:49:17 -06:00
parent 95649c2b3f
commit 88341d9e1f
4 changed files with 12 additions and 9 deletions

View File

@@ -16,7 +16,7 @@ class BackupSetManager:
self._readFile()
def addSet(self, aSet):
self.paths[aSet['name']] = {'root': aSet['root'], 'dirs': [{"type":"include", "path": aSet['root'], 'recurse': True}]}
self.paths[aSet['name']] = {'root': aSet['root'], 'dirs': [{"type": "include", "path": aSet['root'], 'recurse': True}]}
# save the file
self._writeFile()
@@ -60,7 +60,7 @@ class BackupSetManager:
aFile.close()
def _readFile(self):
if(xbmcvfs.exists(self.jsonFile)):
# read in the custom file
@@ -73,6 +73,7 @@ class BackupSetManager:
# write a blank file
self._writeFile()
class AdvancedBackupEditor:
dialog = None
@@ -128,7 +129,7 @@ class AdvancedBackupEditor:
elif(aDir['type'] == 'include'):
options.append(xbmcgui.ListItem(self._cleanPath(rootPath, aDir['path']), "%s: %s | %s: %s" % ("Type", utils.getString(30134), "Include Sub Folders", str(aDir['recurse']))))
optionSelected = self.dialog.select(utils.getString(30122) + ' ' + name, options, useDetails=True)
optionSelected = self.dialog.select(utils.getString(30122) + ' ' + name, options, useDetails=True)
if(optionSelected == 0 or optionSelected == 1):
# add a folder, will equal root if cancel is hit