From e7f6bbec1dfb525aacd1a30c8e737b27ef93efd9 Mon Sep 17 00:00:00 2001 From: Guilherme Latrova Date: Wed, 17 Nov 2021 07:32:01 -0300 Subject: [PATCH] fix(windows): remove emojis from presentation displaying emojis is causing Tryceratops to crash for some Windows users --- src/tryceratops/interfaces.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tryceratops/interfaces.py b/src/tryceratops/interfaces.py index b6ae35f..13b66ff 100644 --- a/src/tryceratops/interfaces.py +++ b/src/tryceratops/interfaces.py @@ -47,7 +47,7 @@ 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") @@ -55,7 +55,7 @@ def _present_status(self): 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!")