From 844fff1808c3f425021d0dea2743d663b6237534 Mon Sep 17 00:00:00 2001
From: "deepsource-autofix[bot]"
<62050782+deepsource-autofix[bot]@users.noreply.github.com>
Date: Fri, 21 Nov 2025 17:22:15 +0000
Subject: [PATCH] style: format code with Black
This commit fixes the style issues introduced in 6204257 according to the output
from Black.
Details: None
---
PyAvatar/images.py | 3 ++-
PyAvatar/links.py | 3 ++-
__init__.py | 3 ++-
__main__.py | 3 ++-
main.py | 3 ++-
setup.py | 3 ++-
6 files changed, 12 insertions(+), 6 deletions(-)
diff --git a/PyAvatar/images.py b/PyAvatar/images.py
index d0958b0..ee5fa4e 100644
--- a/PyAvatar/images.py
+++ b/PyAvatar/images.py
@@ -14,6 +14,7 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see .
"""
-#pylint: disable=invalid-name, import-error
+
+# pylint: disable=invalid-name, import-error
# Holds image link variables for each avatar
diff --git a/PyAvatar/links.py b/PyAvatar/links.py
index 1e36e9a..d3b6e19 100644
--- a/PyAvatar/links.py
+++ b/PyAvatar/links.py
@@ -14,6 +14,7 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see .
"""
-#pylint: disable=invalid-name, import-error
+
+# pylint: disable=invalid-name, import-error
# Holds file and website links for each avatar/website.
diff --git a/__init__.py b/__init__.py
index f5c9e3d..ab93f62 100644
--- a/__init__.py
+++ b/__init__.py
@@ -1,5 +1,6 @@
"""Initialize PyPI Package"""
-#pylint: disable=invalid-name, import-error
+
+# pylint: disable=invalid-name, import-error
from main import avatars
diff --git a/__main__.py b/__main__.py
index cb0f36e..1a38f9f 100644
--- a/__main__.py
+++ b/__main__.py
@@ -1,5 +1,6 @@
"""This is the main file for the avatars package."""
-#pylint: disable=invalid-name, import-error
+
+# pylint: disable=invalid-name, import-error
from main import avatars
diff --git a/main.py b/main.py
index ac8735b..901fa1b 100644
--- a/main.py
+++ b/main.py
@@ -14,7 +14,8 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see .
"""
-#pylint: disable=invalid-name, import-error, global-statement
+
+# pylint: disable=invalid-name, import-error, global-statement
import webbrowser
from tkinter import Tk, Frame, PhotoImage, Label, TOP, BOTTOM
diff --git a/setup.py b/setup.py
index 6d9211c..a0e5c74 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,6 @@
"""Setup file for PyAvatar."""
-#pylint: disable=invalid-name, import-error
+
+# pylint: disable=invalid-name, import-error
from setuptools import setup, find_packages