Less indentation

merge-requests/8/head
Bob Mottram 2020-12-06 14:42:42 +00:00
parent c7740de9e9
commit 18ac0231b4
1 changed files with 20 additions and 18 deletions

View File

@ -422,10 +422,12 @@ def sharesTimelineJson(actor: str, pageNumber: int, itemsPerPage: int,
allSharesJson = {}
for subdir, dirs, files in os.walk(baseDir + '/accounts'):
for handle in dirs:
if '@' in handle:
if '@' not in handle:
continue
accountDir = baseDir + '/accounts/' + handle
sharesFilename = accountDir + '/shares.json'
if os.path.isfile(sharesFilename):
if not os.path.isfile(sharesFilename):
continue
sharesJson = loadJson(sharesFilename)
if not sharesJson:
continue