Skip to content

Commit

Permalink
relative imports
Browse files Browse the repository at this point in the history
  • Loading branch information
faissaloux committed Jul 11, 2024
1 parent 6c0d919 commit e0509d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions termspark/painter/mode_manager.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from typing import Union

from termspark.painter.modes.hex import HEX
from termspark.painter.modes.name import Name
from termspark.painter.modes.rgb import RGB
from .modes.hex import HEX
from .modes.name import Name
from .modes.rgb import RGB


class ModeManager:
Expand Down
3 changes: 1 addition & 2 deletions termspark/termspark.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import os
from typing import Dict, Final, List, Optional, Sequence, Union

from termspark.line.line import Line

from .exceptions.combination_error import CombinationError
from .exceptions.empty_error import EmptyError
from .exceptions.len_not_supported_error import LenNotSupportedError
Expand All @@ -11,6 +9,7 @@
MultiplePositionsNotSupportedError,
)
from .hyperlink.hyperlink import EncodedHyperlink, Hyperlink
from .line.line import Line
from .separator.separator import Separator
from .structurer.structurer import Structurer
from .styler.styler import Styler
Expand Down

0 comments on commit e0509d8

Please sign in to comment.