You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When generating code, there is an opportunity to make the imports more Pythonic, more specifically PEP 8 compliant.
This:
import pathlib
import pygubu
import tkinter as tk
import tkinter.ttk as ttk
Should be more like this:
# Standard library imports.
import pathlib
import tkinter as tk
import tkinter.ttk as ttk
# Related third party imports.
import pygubu
# Local application/library specific imports.
The text was updated successfully, but these errors were encountered:
When generating code, there is an opportunity to make the imports more Pythonic, more specifically PEP 8 compliant.
This:
Should be more like this:
The text was updated successfully, but these errors were encountered: