Skip to content

Commit d39af4e

Browse files
committed
Add a dependency on cmd2_ansi and remove ansi submodule
1 parent c71a5f0 commit d39af4e

File tree

7 files changed

+15
-992
lines changed

7 files changed

+15
-992
lines changed

cmd2_table/__init__.py

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
11
"""Import certain things for backwards compatibility."""
22

3-
from .ansi import (
4-
Bg,
5-
EightBitBg,
6-
EightBitFg,
7-
Fg,
8-
RgbBg,
9-
RgbFg,
10-
TextStyle,
11-
style,
12-
)
133
from .table_creator import (
144
AlternatingTable,
155
BorderedTable,
@@ -20,16 +10,7 @@
2010
VerticalAlignment,
2111
)
2212

23-
__all__: list[str] = [ # noqa: RUF022
24-
# ANSI Exports
25-
'Bg',
26-
'Fg',
27-
'EightBitBg',
28-
'EightBitFg',
29-
'RgbBg',
30-
'RgbFg',
31-
'TextStyle',
32-
'style',
13+
__all__: list[str] = [
3314
# Table Exports
3415
'AlternatingTable',
3516
'BorderedTable',

0 commit comments

Comments
 (0)