From b4fca127d137bc2aa897e0673b957fd9e1c72264 Mon Sep 17 00:00:00 2001 From: jesopo Date: Thu, 28 Feb 2019 17:18:47 +0000 Subject: [PATCH] COLOR_POSITIVE should be green and COLOR_NEGATIVE should be red --- modules/github/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/github/__init__.py b/modules/github/__init__.py index 92270d85..3d03fbd5 100644 --- a/modules/github/__init__.py +++ b/modules/github/__init__.py @@ -3,8 +3,8 @@ from src import ModuleManager, utils COLOR_BRANCH = utils.consts.ORANGE COLOR_REPO = utils.consts.GREY -COLOR_POSITIVE = utils.consts.RED -COLOR_NEGATIVE = utils.consts.GREEN +COLOR_POSITIVE = utils.consts.GREEN +COLOR_NEGATIVE = utils.consts.RED COLOR_ID = utils.consts.PURPLE FORM_ENCODED = "application/x-www-form-urlencoded"