Drop dictionary alignment by colon

This commit is contained in:
Veronica Berglyd Olsen
2021-06-25 23:14:13 +02:00
parent 486af84107
commit e1dcfaa1e3
20 changed files with 393 additions and 396 deletions
+6 -6
View File
@@ -846,9 +846,9 @@ class Config:
if "words" in theEntry.keys():
wordCount = int(theEntry["words"])
self.recentProj[projPath] = {
"title" : theTitle,
"time" : lastTime,
"words" : wordCount,
"title": theTitle,
"time": lastTime,
"words": wordCount,
}
except Exception as e:
@@ -887,9 +887,9 @@ class Config:
"""Add or update recent cache information o9n a given project.
"""
self.recentProj[os.path.abspath(projPath)] = {
"title" : projTitle,
"time" : int(saveTime),
"words" : int(wordCount),
"title": projTitle,
"time": int(saveTime),
"words": int(wordCount),
}
return True