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