Skip to content

Commit f021880

Browse files
authored
Merge pull request #11 from john-soklaski/master
Remove extraneous parentheses around print statements
2 parents 913e29e + dd8ee99 commit f021880

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CCScriptWriter/CCScriptWriter.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -212,8 +212,8 @@ def loadDialogue(self, loadCoilSnake=False):
212212
try:
213213
with open(project) as f: pass
214214
except IOError:
215-
print(("Failed to open \"{}\". Invalid CoilSnake project. "
216-
"Aborting.".format(project)))
215+
print("Failed to open \"{}\". Invalid CoilSnake project. "
216+
"Aborting.".format(project))
217217
sys.exit(1)
218218
for fileName in COILSNAKE_FILES:
219219
csFile = open(os.path.join(o, fileName), "r")
@@ -742,7 +742,7 @@ def main():
742742
main.loadDialogue(args.coilsnake)
743743
main.processDialogue()
744744
main.outputDialogue(args.coilsnake)
745-
print(("Complete. Time: {:.2f}s".format(float(time.time() - start))))
745+
print("Complete. Time: {:.2f}s".format(float(time.time() - start)))
746746
except KeyboardInterrupt:
747747
print("\rProgram execution aborted.")
748748

0 commit comments

Comments
 (0)