diff --git a/__main__.py b/__main__.py index b8ce406..c71155c 100644 --- a/__main__.py +++ b/__main__.py @@ -1,4 +1,5 @@ """This is the main file for the workout app.""" + # pylint: disable=invalid-name, import-error from main import workout diff --git a/gui.py b/gui.py index 1da22be..accae3e 100644 --- a/gui.py +++ b/gui.py @@ -15,7 +15,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . """ -#pylint: disable=unused-variable, global-statement, invalid-name, too-many-branches, too-many-statements +# pylint: disable=unused-variable, global-statement, invalid-name, too-many-branches, too-many-statements import tkinter.messagebox as box from tkinter import Tk, Label, Radiobutton, StringVar, Frame, TOP, HORIZONTAL