Skip to content

Commit

Permalink
pylint: disable too-many-instance-attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
praiskup committed Feb 3, 2024
1 parent d0e07f9 commit 5f79f68
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@ load-plugins=pylint_copr_plugin
# cyclic-import
# Seems like cyclic-import is just a style check which is not going to be
# fixed: https://github.com/PyCQA/pylint/issues/6983
disable=import-error,too-few-public-methods,consider-using-f-string,cyclic-import
# too-many-instance-attributes
# Local variables are often pretty hard to avoid, yet switching to
# dataclasses almost never makes sense.
disable=import-error,too-few-public-methods,consider-using-f-string,cyclic-import,too-many-instance-attributes

[VARIABLES]
# A regular expression matching names used for dummy variables (i.e. not used).
Expand Down
5 changes: 4 additions & 1 deletion pylintrc_clients
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ load-plugins=pylint_copr_plugin
# We still support Python 2.7 (EL7) for clients.
# unspecified-encoding
# Python2.7: TypeError: 'encoding' is an invalid keyword argument for this function
disable=import-error,useless-object-inheritance,super-with-arguments,consider-using-f-string,unspecified-encoding
# too-many-instance-attributes
# Local variables are often pretty hard to avoid, yet switching to
# dataclasses almost never makes sense.
disable=import-error,useless-object-inheritance,super-with-arguments,consider-using-f-string,unspecified-encoding,too-many-instance-attributes

[VARIABLES]
# A regular expression matching names used for dummy variables (i.e. not used).
Expand Down

0 comments on commit 5f79f68

Please sign in to comment.