From 591958acb8d783839f2c71c2d8ab0a2c7b9fb42f Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Sun, 23 Nov 2025 19:03:17 +0000 Subject: [PATCH] style: format code with Black This commit fixes the style issues introduced in c250128 according to the output from Black. Details: None --- __main__.py | 1 + gui.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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