From ee4bc44411a1ef295187699f9aedbac378a750ba Mon Sep 17 00:00:00 2001 From: Elias Saffarmoghadam <35095214+eliassrm@users.noreply.github.com> Date: Mon, 3 Nov 2025 12:30:34 +0100 Subject: [PATCH] Refactor password generator and update imports --- main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 14d283c..1798055 100644 --- a/main.py +++ b/main.py @@ -6,7 +6,7 @@ except ImportError: from Tkinter import * import time -from pwgenfunc import RandPass +from PasswordGen import RandPass #Main def pwGenerator(size = 8): @@ -79,3 +79,4 @@ def Copy_password(): gui.resizable(False, False) gui.mainloop() +