Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Alter-Sitanshu committed Oct 13, 2024
1 parent 5b02173 commit 0d3fa8c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pass_manager/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ def search():
except JSONDecodeError:
messagebox.showerror("Error", "Not Found")
else:
messagebox.showinfo("Search Result", f"email:{info["email"]}\npassword:{info["password"]}")
mail = info["email"]
passw = info["password"]
messagebox.showinfo("Search Result", f"email:{mail}\npassword:{passw}")
#---------Random password generator----------
def random_pass():
import random
Expand Down

0 comments on commit 0d3fa8c

Please sign in to comment.