Skip to content

Commit 9db78da

Browse files
committed
migrate: Disable too-many-locals and branches lints
These scripts are throw-away, so we don't care about a bit of extra complexity here. Signed-off-by: Leandro Lucarella <luca-frequenz@llucax.com>
1 parent ec4bac6 commit 9db78da

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/cookiecutter-migrate.template.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
And remember to follow any manual instructions for each run.
2121
""" # noqa: E501
2222

23-
# pylint: disable=too-many-lines
23+
# pylint: disable=too-many-lines, too-many-locals, too-many-branches
2424

2525
import hashlib
2626
import json

cookiecutter/migrate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
And remember to follow any manual instructions for each run.
2121
""" # noqa: E501
2222

23-
# pylint: disable=too-many-lines
23+
# pylint: disable=too-many-lines, too-many-locals, too-many-branches
2424

2525
import hashlib
2626
import json

0 commit comments

Comments
 (0)