Skip to content

Commit

Permalink
fixed printing
Browse files Browse the repository at this point in the history
  • Loading branch information
ngraham20 committed May 8, 2018
1 parent 9113d95 commit a5b31fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions virtupet/Pudgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,7 @@ def export_to_json(self):

self.handler.save_as("./data/pudgies/" + self.uid + ".json", self.json_object)

print()
print("---Exporting Pudgi---")
print("UID: " + str(self.uid))
print("Name: " + self.name)
Expand Down
3 changes: 1 addition & 2 deletions virtupet/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ def main():
print()
print("<<<---" + pudgi.name + " died of old age--->>>")
print("Death Count: " + str(death_count))
print()

# print(colored(pudgi.name + " died of old age", "red"))
if pudgi.sleeping:
Expand Down Expand Up @@ -166,7 +165,7 @@ def main():
print()
print("<<<---" + pudgi.name + " died in childbirth--->>>")
print("Death Count: " + str(death_count))
print()

# print(colored(pudgi.name + " died in childbirth", "red"))
if int(time_clock.get_minutes()) % 15 == 0:
pudgi.make_decision()
Expand Down

0 comments on commit a5b31fc

Please sign in to comment.