Skip to content

Commit 87847d4

Browse files
Merge pull request #87 from Dog-Face-Development/deepsource-transform-306b4322
style: format code with Black
2 parents 6204257 + 844fff1 commit 87847d4

6 files changed

Lines changed: 12 additions & 6 deletions

File tree

PyAvatar/images.py

Lines changed: 2 additions & 1 deletion
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 <https://www.gnu.org/licenses/>.
1616
"""
17-
#pylint: disable=invalid-name, import-error
17+
18+
# pylint: disable=invalid-name, import-error
1819

1920
# Holds image link variables for each avatar

PyAvatar/links.py

Lines changed: 2 additions & 1 deletion
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 <https://www.gnu.org/licenses/>.
1616
"""
17-
#pylint: disable=invalid-name, import-error
17+
18+
# pylint: disable=invalid-name, import-error
1819

1920
# Holds file and website links for each avatar/website.

__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=invalid-name, import-error
2+
3+
# pylint: disable=invalid-name, import-error
34

45
from main import avatars
56

__main__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""This is the main file for the avatars package."""
2-
#pylint: disable=invalid-name, import-error
2+
3+
# pylint: disable=invalid-name, import-error
34

45
from main import avatars
56

main.py

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

1920
import webbrowser
2021
from tkinter import Tk, Frame, PhotoImage, Label, TOP, BOTTOM

setup.py

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

45
from setuptools import setup, find_packages
56

0 commit comments

Comments
 (0)