Skip to content

Commit

Permalink
Suppress pylint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
eschan145 committed Jan 23, 2025
1 parent ef36693 commit cc9c720
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[MESSAGES CONTROL]
disable=too-many-branches, too-few-public-methods, too-many-locals, unnecessary-semicolon, consider-using-f-string, invalid-name, import-outside-toplevel, import-error, too-many-statements
disable=too-many-branches, too-few-public-methods, undefined-variable, no-member, redefined-builtin, too-many-locals, unnecessary-semicolon, consider-using-f-string, invalid-name, import-outside-toplevel, import-error, too-many-statements
3 changes: 0 additions & 3 deletions src/dieknow.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
"""DieKnow API.
"""

__all__ = []


import ctypes
try:
Expand Down Expand Up @@ -76,7 +74,6 @@
for func_name in dir(lib):
if not func_name.startswith("_"):
globals()[func_name] = getattr(lib, func_name)
__all__.append(func_name)

folder_path = lib.get_folder_path()

Expand Down

0 comments on commit cc9c720

Please sign in to comment.