Skip to content
This repository has been archived by the owner on Mar 16, 2023. It is now read-only.

Commit

Permalink
Fix Pylint Errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Ombucha authored Jul 17, 2022
1 parent f34abac commit fbbb5be
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
max-line-length = 240

[MASTER]
disable = R0916, C0116
disable = R0916, C0116, C0114, E0401, R0903
2 changes: 1 addition & 1 deletion dilbert/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@


from .comic import *
from .utils import *
from .utils import *
2 changes: 1 addition & 1 deletion dilbert/endpoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
"""


BASE_URL = "https://dilbert.com/"
BASE_URL = "https://dilbert.com/"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
packages = ["dilbert"],
include_package_data = True,
install_requires = ["beautifulsoup4", "requests"]
)
)

0 comments on commit fbbb5be

Please sign in to comment.