mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
7 lines
333 B
Python
7 lines
333 B
Python
import Defs.ThemeManager.theme as theme
|
|
default_palette = theme.default_palette
|
|
|
|
def print_sorted_as_menu(sorting_list):
|
|
col_width = max(len(word) for row in sorting_list for word in row) + 2
|
|
for row in sorting_list:
|
|
print("".join(word.ljust(col_width) for word in row).format(default_palette[0], default_palette[2])) |