From b1b10eb2d071bf243b51b792722a16824fc7a339 Mon Sep 17 00:00:00 2001 From: Manitej Boorgu Date: Fri, 7 Aug 2020 21:33:17 +0000 Subject: [PATCH] capitalized class names --- src/replit/termutils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/replit/termutils.py b/src/replit/termutils.py index 446b712..d51d781 100644 --- a/src/replit/termutils.py +++ b/src/replit/termutils.py @@ -6,7 +6,7 @@ def clear() -> None: print("\033[H\033[2J", end="", flush=True) -class color: +class Color: """Dynamic Color: Accepts RGB Color.""" def __init__(self, r: int, g: int, b: int) -> None: @@ -100,7 +100,7 @@ class color: return cls(r, g, b) -class bit: +class Bit: def __init__(self, value: int) -> None: """ Use a 8bit colorpallete @@ -132,7 +132,7 @@ attributes = { # use only repl.it supported ansi codes. Codes such as blink do } -class attr: +class Attr: def __init__(self, attrib: str) -> None: """ Custom Attributes such as bold and italic