Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style: format code with Black #88

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion craftclash/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Initialize PyPI Package"""
#pylint: disable=import-error, invalid-name
# pylint: disable=import-error, invalid-name

from .aboutscreen import projectlicense, assetslicense, eula, aboutscreen
from .optionscreen import optionsscreen
Expand Down
4 changes: 2 additions & 2 deletions craftclash/tests/test_aboutscreen.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Test the AboutScreen class in aboutscreen.py."""
#pylint: disable=import-error, invalid-name
# pylint: disable=import-error, invalid-name

# Get out of the test directory
import os
Expand All @@ -14,7 +14,7 @@

class TestAboutScreen(unittest.TestCase):
"""Test the AboutScreen class in aboutscreen.py."""

def setUp(self):
"""Set up the test."""
self.about_screen = aboutscreen()
Expand Down
4 changes: 2 additions & 2 deletions craftclash/tests/test_optionscreen.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Test the OptionScreen class in optionscreen.py."""
#pylint: disable=import-error, invalid-name
# pylint: disable=import-error, invalid-name

# Get out of the test directory
import os
Expand All @@ -14,7 +14,7 @@

class TestOptionScreen(unittest.TestCase):
"""Test the OptionScreen class in optionscreen.py."""

def setUp(self):
"""Set up the test."""
self.option_screen = optionsscreen()
Expand Down
2 changes: 1 addition & 1 deletion main.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
# pylint: disable=import-error, invalid-name

# Main program window.

Expand Down
4 changes: 2 additions & 2 deletions tests/test_main.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Test the main.py file."""
#pylint: disable=import-error, invalid-name
# pylint: disable=import-error, invalid-name

# Get out of the test directory
import os
Expand All @@ -14,7 +14,7 @@

class TestCraftClash(unittest.TestCase):
"""Test the CraftClash class in main.py."""

def setUp(self):
"""Set up the test."""
self.app = craftclash()
Expand Down
Loading