Skip to content

Commit

Permalink
Remove "startdir" argument from pytest_report_header
Browse files Browse the repository at this point in the history
We don't use it and pytest seems to have removed it.
  • Loading branch information
domdfcoding committed Mar 4, 2024
1 parent 2068468 commit 0fad92f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coincidence/__init__.py
Expand Up @@ -75,7 +75,7 @@
__all__ = ("pytest_report_header", "PEP_563")


def pytest_report_header(config, startdir) -> str: # noqa: MAN001
def pytest_report_header(config) -> str: # noqa: MAN001
"""
Prints the start time of the pytest session.
"""
Expand Down

0 comments on commit 0fad92f

Please sign in to comment.