From 33ff5a0bf85ad277005ca6feaac7f16968ac5a31 Mon Sep 17 00:00:00 2001 From: jayofelony Date: Wed, 27 Mar 2024 07:37:59 +0100 Subject: [PATCH] Fix ui.invert Signed-off-by: jayofelony --- pwnagotchi/ui/view.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pwnagotchi/ui/view.py b/pwnagotchi/ui/view.py index 3d822190..52b92f05 100644 --- a/pwnagotchi/ui/view.py +++ b/pwnagotchi/ui/view.py @@ -32,13 +32,10 @@ class View(object): logging.debug("INVERT BLACK/WHITES:" + str(config['ui']['invert'])) self.invert = 1 BLACK = 0x00 - WHITE - 0xFF + WHITE = 0xFF self._black = 0x00 self._white = 0xFF - - - # setup faces from the configuration in case the user customized them faces.load_from_config(config['ui']['faces'])