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

Commit 2d62ac6

Browse files
author
Andreas Sas
committed
Update __init__.py
1 parent c569062 commit 2d62ac6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/AthenaColor/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Nothing should ever be removed from this list, once something is added in a full version
77

88
__all__ = [
9-
"ColorTupleConversion","ColorObjectConversion",
9+
"color_tuple_conversion","color_object_conversion",
1010
"RGB","RGBA","HEX","HEXA","HSV","HSL","CMYK",
1111
"Fore","Back","Underline","Style","Basic",
1212
"ForeNest","BackNest","UnderlineNest","StyleNest","BasicNest"
@@ -20,13 +20,13 @@
2020

2121
from AthenaColor.models.color_system import RGB, RGBA, HEX, HEXA, HSV, HSL, CMYK
2222

23-
import AthenaColor.functions.color_tuple_conversion as ColorTupleConversion
24-
import AthenaColor.functions.color_object_conversion as ColorObjectConversion
23+
import AthenaColor.functions.color_tuple_conversion as color_tuple_conversion
24+
import AthenaColor.functions.color_object_conversion as color_object_conversion
2525

2626
# apply the fix, so that in windows the colors are shown correctly
27-
# noinspection PyProtectedMember
2827
from AthenaColor.functions.functions import fix_console as _fix_console
2928
_fix_console()
3029

3130
# import the infor function
31+
# noinspection PyProtectedMember
3232
from AthenaColor._info.info import info

0 commit comments

Comments
 (0)