Skip to content
Merged
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
3 changes: 2 additions & 1 deletion PyAvatar/images.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
#pylint: disable=invalid-name, import-error

# pylint: disable=invalid-name, import-error

# Holds image link variables for each avatar
3 changes: 2 additions & 1 deletion PyAvatar/links.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
#pylint: disable=invalid-name, import-error

# pylint: disable=invalid-name, import-error

# Holds file and website links for each avatar/website.
3 changes: 2 additions & 1 deletion __init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Initialize PyPI Package"""
#pylint: disable=invalid-name, import-error

# pylint: disable=invalid-name, import-error

from main import avatars

Expand Down
3 changes: 2 additions & 1 deletion __main__.py
Original file line number Diff line number Diff line change
@@ -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

Expand Down
3 changes: 2 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
#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
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -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

Expand Down