From 309f83bcfc3e534c80037ceb2948947d627b3dfb Mon Sep 17 00:00:00 2001 From: kleph Date: Wed, 30 Nov 2022 01:48:52 +0100 Subject: [PATCH] start with fresh pylint for 2022 --- 10/10_2.py | 2 ++ 13/13.py | 2 ++ 13/13_2.py | 2 ++ 8/8_2.py | 2 ++ 9/9.py | 2 ++ 5 files changed, 10 insertions(+) diff --git a/10/10_2.py b/10/10_2.py index 4ade614..120d895 100755 --- a/10/10_2.py +++ b/10/10_2.py @@ -1,5 +1,7 @@ #!/usr/bin/env python # 2021 - Advent Of Code - 10 part 2 +# 2022: cheat for pylint to start fresh for 2022 +# pylint: disable=consider-iterating-dictionary def parse_file(file): non_corrupted = [] diff --git a/13/13.py b/13/13.py index 3e67374..2c2eae7 100755 --- a/13/13.py +++ b/13/13.py @@ -1,5 +1,7 @@ #!/usr/bin/env python # 2021 - Advent Of Code - 13 +# 2022: cheat for pylint to start fresh for 2022 +# pylint: disable=unnecessary-list-index-lookup def parse_file(file): diff --git a/13/13_2.py b/13/13_2.py index 5e521fa..47355bf 100755 --- a/13/13_2.py +++ b/13/13_2.py @@ -1,5 +1,7 @@ #!/usr/bin/env python # 2021 - Advent Of Code - 13 part 2 +# 2022: cheat for pylint to start fresh for 2022 +# pylint: disable=unnecessary-list-index-lookup def parse_file(file): diff --git a/8/8_2.py b/8/8_2.py index 194af08..97f596c 100755 --- a/8/8_2.py +++ b/8/8_2.py @@ -1,5 +1,7 @@ #!/usr/bin/env python # 2021 - Advent Of Code - 8 part 2 +# 2022: cheat for pylint to start fresh for 2022 +# pylint: disable=no-member # acedgfb cdfbe gcdfa fbcad dab cefabd cdfgeb eafb cagedb ab | cdfeb fcadb cdfeb cdbaf diff --git a/9/9.py b/9/9.py index afa3872..fec9b9f 100755 --- a/9/9.py +++ b/9/9.py @@ -1,5 +1,7 @@ #!/usr/bin/env python # 2021 - Advent Of Code - 9 +# 2022: cheat for pylint to start fresh for 2022 +# pylint: disable=unnecessary-list-index-lookup def parse_file(file): hmap = []