Skip to content

Commit

Permalink
issue #74, remove unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
JolanThomassin committed Mar 28, 2024
1 parent 04f18f9 commit 366ffdd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/test_db_generate_qna_crawl.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@
import json
import tempfile
import shutil
from unittest.mock import patch, MagicMock, mock_open
from datetime import date
from unittest.mock import patch

sys.path.append(
os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
) # noqa: E402
from bin.generate_qna_crawl import generate_question, NoChunkFoundError
)

from bin.generate_qna_crawl import generate_question

Check failure on line 14 in tests/test_db_generate_qna_crawl.py

View workflow job for this annotation

GitHub Actions / lint-test / lint-test

Ruff (E402)

tests/test_db_generate_qna_crawl.py:14:1: E402 Module level import not at top of file


class TestScript(unittest.TestCase):
Expand Down

0 comments on commit 366ffdd

Please sign in to comment.