From 3a6d771f04001e21761506fa221165e6364601a2 Mon Sep 17 00:00:00 2001 From: Artur Meski Date: Sat, 5 Mar 2016 00:08:32 +0100 Subject: [PATCH] cosmetics... again :) --- rctsys.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rctsys.py b/rctsys.py index 601bfd6..cd04470 100755 --- a/rctsys.py +++ b/rctsys.py @@ -314,7 +314,7 @@ class ReactionSystem(object): print(" "*4 + "{0: ^35}{1: ^25}{2: ^15}".format("reactants"," inhibitors"," products")) for reaction in self.reactions: # print("\t( R={" + self.state_to_str(reaction[0]) + "}, I={" + self.state_to_str(reaction[1]) + "}, P={" + self.state_to_str(reaction[2]) + "} )") - print(" "*2 + "- {0: ^35}{1: ^25}{2: ^15}".format("{ " + self.state_to_str(reaction[0]) + " }", + print(" " + "- {0: ^35}{1: ^25}{2: ^15}".format("{ " + self.state_to_str(reaction[0]) + " }", " { " + self.state_to_str(reaction[1]) + " }", " { " + self.state_to_str(reaction[2]) + " }"))