Skip to content

Commit 2001437

Browse files
committed
Disable pylint similarity check for the migration script
The template will always have a lot of similarity to the current instance of the script. Signed-off-by: Leandro Lucarella <luca-frequenz@llucax.com>
1 parent 4fda7c6 commit 2001437

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/cookiecutter-migrate.template.py

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

23-
# pylint: disable=too-many-lines, too-many-locals, too-many-branches
23+
# R0801 is similarity detection, as the template is always similar to the current script
24+
# pylint: disable=too-many-lines, too-many-locals, too-many-branches, R0801
2425

2526
import hashlib
2627
import json

0 commit comments

Comments
 (0)