Skip to content

Commit

Permalink
style: format code with Black
Browse files Browse the repository at this point in the history
This commit fixes the style issues introduced in ff1c066 according to the output
from Black.

Details: None
  • Loading branch information
deepsource-autofix[bot] authored Dec 5, 2023
1 parent ff1c066 commit fd36e3c
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion craftclash/aboutscreen.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
#pylint: disable=import-error, invalid-name, too-many-lines, too-many-locals
# pylint: disable=import-error, invalid-name, too-many-lines, too-many-locals

# Creates the "About" screen.

Expand Down
16 changes: 14 additions & 2 deletions craftclash/optionscreen.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,24 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
#pylint: disable=import-error, invalid-name, too-many-locals
# pylint: disable=import-error, invalid-name, too-many-locals

## Creates the "Options" screen.

# Import Statements
from tkinter import Tk, Label, Button, Scale, Frame, Radiobutton, StringVar, Entry, TOP, LEFT, RIGHT
from tkinter import (
Tk,
Label,
Button,
Scale,
Frame,
Radiobutton,
StringVar,
Entry,
TOP,
LEFT,
RIGHT,
)
import tkinter.messagebox as box


Expand Down
2 changes: 1 addition & 1 deletion craftclash/playscreen.old.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
#pylint: disable=import-error, invalid-name, too-many-locals
# pylint: disable=import-error, invalid-name, too-many-locals

# Creates the "Playscreen"

Expand Down

0 comments on commit fd36e3c

Please sign in to comment.