Skip to content

Commit 844fff1

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

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

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)