Compare commits

..

No commits in common. "45dc57de970e6a329aa7d7c05d785c350bf07eeb" and "d600b78d02a85283a2521b9e4d282b3a85f3d798" have entirely different histories.

2 changed files with 7 additions and 2 deletions

View File

@ -11,10 +11,9 @@ class Menu:
def display(self):
clear()
print(self.title)
print(f'{'-' * len(self.title)}\n')
print('-' * len(self.title) + '\n')
for key, value in self.menu_items.items():
if key:
print(f'{key}: {value}')
else:
print()
print(f'\n{self.selection}')

6
main.py Normal file
View File

@ -0,0 +1,6 @@
def main():
print("Hello from dg-clt!")
if __name__ == "__main__":
main()