Remove alignments in arguments for format statements

This commit is contained in:
Veronica Berglyd Olsen
2021-06-25 23:20:15 +02:00
parent e1dcfaa1e3
commit 0575f89ae9
11 changed files with 65 additions and 68 deletions
+2 -2
View File
@@ -409,8 +409,8 @@ def testCoreToHtml_Complex(dummyGUI, fncDir):
"</body>\n"
"</html>\n"
).format(
htmlStyle = "\n".join(theStyle),
bodyText = "".join(resText).rstrip()
htmlStyle="\n".join(theStyle),
bodyText="".join(resText).rstrip()
)
saveFile = os.path.join(fncDir, "outFile.htm")