Remove old test code from design.py

This is covered in unit tests these days.
This commit is contained in:
Dave Pearson
2022-11-17 11:02:29 +00:00
parent 265f770976
commit 3b8b0ebeb2

View File

@@ -222,11 +222,3 @@ def show_design(light: ColorSystem, dark: ColorSystem) -> Table:
table.add_column("Dark", justify="center")
table.add_row(make_shades(light), make_shades(dark))
return table
if __name__ == "__main__":
from .app import DEFAULT_COLORS
from rich import print
print(show_design(DEFAULT_COLORS["light"], DEFAULT_COLORS["dark"]))