Skip to content

Commit

Permalink
Update test_list_to_html_table.py
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ikostan committed Dec 19, 2024
1 parent 52ba64d commit 5136bf5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions kyu_6/array_to_html_table/test_list_to_html_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 5136bf5

Please sign in to comment.