From bc7cb9c355c989457843729ec6d0c5c915f29640 Mon Sep 17 00:00:00 2001 From: jpic Date: Sun, 2 Aug 2020 20:10:19 +0200 Subject: [PATCH] Remove artificial centering from output labels --- shlax/output.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/shlax/output.py b/shlax/output.py index fa07783..e877107 100644 --- a/shlax/output.py +++ b/shlax/output.py @@ -118,7 +118,7 @@ class Output: def test(self, action): self(''.join([ self.colors['purplebold'], - '! TEST ', + '! TEST ', self.colors['reset'], self.colorized(action), '\n', @@ -128,7 +128,7 @@ class Output: if self.debug: self(''.join([ self.colors['bluebold'], - '+ CLEAN ', + '+ CLEAN ', self.colors['reset'], self.colorized(action), '\n', @@ -138,7 +138,7 @@ class Output: if self.debug is True or 'visit' in str(self.debug): self(''.join([ self.colors['orangebold'], - '⚠ START ', + '⚠ START ', self.colors['reset'], self.colorized(action), '\n', @@ -148,7 +148,7 @@ class Output: if self.debug is True or 'visit' in str(self.debug): self(''.join([ self.colors['cyanbold'], - '➤ INFO ', + '➤ INFO ', self.colors['reset'], text, '\n',