-
Notifications
You must be signed in to change notification settings - Fork 362
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove Unused datetime Import #230
Comments
@Vinnixz can you please assign this issue to me |
@bhavya2021245 Sorry, but I can’t assign this issue to myself because I don’t have the necessary permissions. |
@Vinnixz where can i locate the script ? |
@Vinnixz You forgot to mention in which the script file exists, only then can we solve this issue |
lol |
Open
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I noticed that the datetime module is imported in the code but is not used anywhere. To keep the code clean and avoid unnecessary imports, we should remove the datetime import.
Details:
In the script, the following import is present:
import datetime
However, there are no references to datetime in the rest of the code. Removing this import will help in maintaining the code's clarity and efficiency.
Suggested Action:
Please remove the line import datetime from the script.
Thank you!
The text was updated successfully, but these errors were encountered: