Skip to content

Commit

Permalink
fix(windows): remove emojis from presentation
Browse files Browse the repository at this point in the history
displaying emojis is causing Tryceratops to crash for
some Windows users
  • Loading branch information
guilatrova committed Nov 17, 2021
1 parent 259bf9c commit e7f6bbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tryceratops/interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ def _present_violations(self):
print(present_violation(violation))

def _present_status(self):
print("Done processing! 🦖✨")
print("Done processing!")

if self.runner.analyzed_files:
print(f"Processed {self.runner.analyzed_files} files")

if self.runner.violations:
print(f"Found {len(self.runner.violations)} violations")
else:
print(wrap_color("Everything clean!", COLORS.BOLD))
print(wrap_color("Everything clean!", COLORS.BOLD))
else:
print("Nothing to check!")

Expand Down

0 comments on commit e7f6bbe

Please sign in to comment.