From 18e342cd03c8c6197e259098e73b05da881dbb00 Mon Sep 17 00:00:00 2001 From: Omkar Khatavkar Date: Wed, 8 May 2024 18:48:55 +0530 Subject: [PATCH] removed the non-used Colored box object (#14991) removed the non-used constant object (cherry picked from commit bf5c74a7ca5f5e4d2748596888aa2afe8589e0ee) --- robottelo/constants/__init__.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/robottelo/constants/__init__.py b/robottelo/constants/__init__.py index b3bfcc76d4e..96275959644 100644 --- a/robottelo/constants/__init__.py +++ b/robottelo/constants/__init__.py @@ -5,17 +5,6 @@ from box import Box from nailgun import entities - -# String Color codes -class Colored(Box): - YELLOW = '\033[1;33m' - REDLIGHT = '\033[3;31m' - REDDARK = '\033[1;31m' - GREEN = '\033[1;32m' - WHITELIGHT = '\033[1;30m' - RESET = '\033[0m' - - # This should be updated after each version branch SATELLITE_VERSION = "6.15" SATELLITE_OS_VERSION = "8"