From 5136bf56a0bc026588be3930acb995d5bf112c8a Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Thu, 19 Dec 2024 06:02:27 -0800 Subject: [PATCH] Update test_list_to_html_table.py No name 'to_table' in module 'kyu_6.array_to_html_table' kyu_6/array_to_html_table/ test_list_to_html_table.py 10 import allure 11 from utils.log_func import print_log 12 from kyu_6.array_to_html_table.to_table import to_table 13 Time to fix: 5 minutes no-name-in-module (E0611) Why is this an issue? No name %r in module %r Used when a name cannot be found in a module. --- kyu_6/array_to_html_table/test_list_to_html_table.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kyu_6/array_to_html_table/test_list_to_html_table.py b/kyu_6/array_to_html_table/test_list_to_html_table.py index b33450ce1b7..0ebd52ad415 100644 --- a/kyu_6/array_to_html_table/test_list_to_html_table.py +++ b/kyu_6/array_to_html_table/test_list_to_html_table.py @@ -10,7 +10,9 @@ import unittest import allure from utils.log_func import print_log +# pylint: disable = no-name-in-module from kyu_6.array_to_html_table.to_table import to_table +# pylint: enable = no-name-in-module @allure.epic('6 kyu')