Skip to content

Commit

Permalink
Fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
NikAzanov committed May 23, 2024
1 parent 4ebe105 commit 7f5d849
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytest_qaseio/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def __init__(
# Mapping of case ids and result hash from qase with status
self._qase_results: dict[str, tuple[str, models.ResultCreate]] = dict()

def pytest_sessionstart(self, session: pytest.Session):
def pytest_sessionstart(self, session: pytest.Session) -> None:
"""Clear previously saved run, prepare lock file."""
if hasattr(session.config, "workerinput"):
# Do nothing if it is not master thread
Expand Down

0 comments on commit 7f5d849

Please sign in to comment.