Skip to content

Commit dcc558a

Browse files
style: format code with Black
This commit fixes the style issues introduced in c683a20 according to the output from Black. Details: None
1 parent c683a20 commit dcc558a

File tree

9 files changed

+14
-5
lines changed

9 files changed

+14
-5
lines changed

__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""Initialize PyPI Package"""
2-
#pylint: disable=import-error, invalid-name
2+
3+
# pylint: disable=import-error, invalid-name
34

45
from main import craftclash
56

__main__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""Main entry point for the CraftClash application."""
2-
#pylint: disable=import-error, invalid-name
2+
3+
# pylint: disable=import-error, invalid-name
34

45
from main import craftclash
56

craftclash/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""Initialize PyPI Package"""
2-
#pylint: disable=import-error, invalid-name
2+
3+
# pylint: disable=import-error, invalid-name
34

45
from .aboutscreen import projectlicense, assetslicense, eula, aboutscreen
56
from .optionscreen import optionsscreen

craftclash/aboutscreen.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
You should have received a copy of the GNU General Public License
1515
along with this program. If not, see <http://www.gnu.org/licenses/>.
1616
"""
17+
1718
# pylint: disable=import-error, invalid-name, too-many-lines, too-many-locals
1819

1920
# Creates the "About" screen.

craftclash/optionscreen.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
You should have received a copy of the GNU General Public License
1515
along with this program. If not, see <http://www.gnu.org/licenses/>.
1616
"""
17+
1718
# pylint: disable=import-error, invalid-name, too-many-locals
1819

1920
## Creates the "Options" screen.

craftclash/playscreen.old.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
You should have received a copy of the GNU General Public License
1515
along with this program. If not, see <http://www.gnu.org/licenses/>.
1616
"""
17+
1718
# pylint: disable=import-error, invalid-name, too-many-locals
1819

1920
# Creates the "Playscreen"

main.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
You should have received a copy of the GNU General Public License
1515
along with this program. If not, see <http://www.gnu.org/licenses/>.
1616
"""
17+
1718
# pylint: disable=import-error, invalid-name
1819

1920
# Main program window.

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""Setup file for Craft Clash."""
2-
#pylint: disable=import-error, invalid-name
2+
3+
# pylint: disable=import-error, invalid-name
34

45
from setuptools import setup, find_packages
56

tests/test_main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""Test the main application."""
2-
#pylint: disable=import-error, wrong-import-position
2+
3+
# pylint: disable=import-error, wrong-import-position
34

45
import os
56
import sys

0 commit comments

Comments
 (0)