Skip to content

Commit

Permalink
Fix linters
Browse files Browse the repository at this point in the history
  • Loading branch information
wwakabobik committed Aug 19, 2024
1 parent abdfbc0 commit 9c34087
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion __main__.py

This file was deleted.

2 changes: 1 addition & 1 deletion tests/utils/test_reporter_utils_format_error.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Tests for the reporter_utils module, function 'format_error'"""

from ...testrail_api_reporter.utils.reporter_utils import format_error # pylint: disable=relative-beyond-top-level
from testrail_api_reporter.utils.reporter_utils import format_error # pylint: disable=import-error,no-name-in-module


def test_format_error_single_string():
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/test_reporter_utils_upload_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from faker import Faker
from pytest import raises as pytest_raises

from ...testrail_api_reporter.utils.reporter_utils import upload_image # pylint: disable=relative-beyond-top-level
from testrail_api_reporter.utils.reporter_utils import upload_image # pylint: disable=import-error,no-name-in-module


test_filename = choice((f"{getcwd()}/tests/assets/test_image.png", f"{getcwd()}/tests/assets/test_image.jpeg"))
Expand Down

0 comments on commit 9c34087

Please sign in to comment.