Skip to content
This repository was archived by the owner on Jan 13, 2024. It is now read-only.

Commit 626173c

Browse files
author
DirectiveAthena
committed
Fix: Various Error fixing
1 parent 3290722 commit 626173c

File tree

9 files changed

+5
-104
lines changed

9 files changed

+5
-104
lines changed

old/Help.py

Lines changed: 0 additions & 94 deletions
This file was deleted.

src/AthenaColor/Functions/Colors.py renamed to src/AthenaColor/Functions/ColorConversion.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
# - Package Imports -
3535
# ----------------------------------------------------------------------------------------------------------------------
3636
# General Packages
37-
import math
3837

3938
# Custom Library
4039

src/AthenaColor/Functions/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
AnsiEscape,
33
NestedSequence
44
)
5-
from .Colors import (
5+
from .ColorConversion import (
66
rgb_to_hexadecimal,
77
hexadecimal_to_rgb
88
)

src/AthenaColor/Objects/Hexadecimal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
# Custom Packages
99
from .Rgb import rgb
10-
from ..Functions import hexadecimal_to_rgb
10+
from ..Functions.ColorConversion import hexadecimal_to_rgb
1111

1212
# ----------------------------------------------------------------------------------------------------------------------
1313
# - Code -

src/AthenaColor/Objects/Rgb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Custom Library
88

99
# Custom Packages
10-
from ..Functions import rgb_to_hexadecimal
10+
from ..Functions.ColorConversion import rgb_to_hexadecimal
1111

1212
# ----------------------------------------------------------------------------------------------------------------------
1313
# - Code -

src/AthenaColor/Styling/Inline/RgbControlled.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
rgb,
1111
HtmlColors
1212
)
13-
from AthenaColor import init
1413
from ...Functions import AnsiEscape
1514
from ...BASE import end_codes
1615

src/AthenaColor/Styling/Inline/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
Underline # Technically present, but does not work in PyCharm
55
)
66
class Style:
7+
# noinspection PyUnresolvedReferences
78
__all__=[
89
"Reset",
910
"Italic",

src/AthenaColor/Styling/Nested/Nested_Bodies.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@
77

88
# Custom Packages
99
from .Nested_RgbControlled import Nested_RgbControlled
10-
from .Nested_MakeUp import (
11-
NoForeground,
12-
NoBackground,
13-
NoUnderline
14-
)
1510

1611
# ----------------------------------------------------------------------------------------------------------------------
1712
# - Code -

src/AthenaColor/Styling/Nested/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
)
66

77
class Style:
8+
# noinspection PyUnresolvedReferences
89
__all__ = [
910
"Reset",
1011
"Italic",

0 commit comments

Comments
 (0)