Update password_generator.py
Added Error Handling: Implemented a try-except block to gracefully handle non-integer input for the password length. This prevents the program from crashing if the user enters letters or symbols.
Input Validation: Added a check to ensure the password length is a positive number. If the user enters a non-positive number, a descriptive error message is shown.
Code Cleanup: Removed the unused pyperclip import and the extraneous print(a) statement at the end of the file. The tkinter imports were also changed to a more standard import tkinter as tk style.
Description
A short summary of what is included in your Pull Request.
Fixes #(issue_no)
- [ ] Issue_no:
<insert your issue no here> - [ ] Not applicable
Type of change
Choosing one or more options from the following as per the nature of your Pull request.
- [ ] New project insert
- [x] Bug fix (non-breaking change which fixes an issue)
- [x] New feature (non-breaking change which adds functionality)
- [ ] Documentation Update
Project
-
Your Project Name:
-
Short Description: Provide a short desctiption of your Python project
Checklist:
Please tick all the boxes that are fulfilled by your Pull Request.
- [ ] I have named my files and folder, according to this project's guidelines.
- [x] My code follows the style guidelines of this project.
- [ ] I have commented on my code, particularly in hard-to-understand areas.
- [ ] I have created a helpful and easy to understand
README.md, according to the givenREADME_TEMPLATE. - [ ] My changes do not produce any warnings.