From ae51ce82cc6613fc11ab628372e35b9fcc2ba2f6 Mon Sep 17 00:00:00 2001 From: Tyler Lightwood Date: Wed, 7 Feb 2024 14:49:11 +0000 Subject: [PATCH] Update client_database.py --- client_database.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/client_database.py b/client_database.py index 0ae92fd..ab37f20 100644 --- a/client_database.py +++ b/client_database.py @@ -1,4 +1,5 @@ import time +from sudo_user import sudo_user from colorama import Fore, Style from common_functions import clear_screen from customer_adoption_form_dog import adopt_dog_form @@ -56,6 +57,11 @@ def modify_clint_database(): modify_clint_database() def client_database(): + + clear_screen() + + sudo_user() + print(Fore.CYAN + "\nšŸ§‘ Client Database šŸ§‘" + Style.RESET_ALL) print("\n1. " + Fore.GREEN + "šŸ” Search" + Style.RESET_ALL) print("2. " + Fore.GREEN + "šŸ“ Modify Database" + Style.RESET_ALL)