Skip to content

Commit

Permalink
Temporary silence pylint R0914,R0915 in install_plugins.py
Browse files Browse the repository at this point in the history
Silence for now, refactor this function in the future.
> R0914: Too many local variables (22/15) (too-many-locals)
> R0915: Too many statements (59/50) (too-many-statements)

See: #329
  • Loading branch information
arm4b committed Oct 20, 2022
1 parent 4ce4799 commit aeb5718
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/plugins/install_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@
from .settings import BITOPS_config_yaml, BITOPS_plugin_dir


def install_plugins():
# TODO: Refactor this function. Fix pylint R0914: Too many local variables (22/15) (too-many-locals)
# TODO: Refactor this function. Fix pylint R0915: Too many statements (59/50) (too-many-statements)
# See: https://github.com/bitovi/bitops/issues/329
def install_plugins(): # pylint: disable=too-many-locals,too-many-statements
"""
Install plugins function:
Expand Down

0 comments on commit aeb5718

Please sign in to comment.