akshgpt7 / akshgpt7/whac-a-mole
Remove star imports
Open
easy
good first issue
- Dominant language
- Python
- Stars
- 5
- Forks
- 8
- PR merge metrics
- No merged PRs in 30d
Description
Remove the following:
`from tkinter import *`
`from time import *`
Star imports are not allowed in PEP-8 guidelines. So, import the modules with a name and add it wherever they are being used.
*Example:*
`import tkinter as tk`
<..some code..>
`tk.Button()`
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.