Skip to content

Commit

Permalink
fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
pnxenopoulos committed Jun 4, 2024
1 parent a1f46ca commit 4367649
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
# Mock Demo class, __init__ must match awpy.demo.Demo
class MockDemo:
"""Mock Demo class for testing."""
def __init__(self, path: Path, *, verbose: bool, ticks: bool) -> None: # noqa: ARG002

def __init__(
self, path: Path, *, verbose: bool, ticks: bool
) -> None: # noqa: ARG002
"""Creates a mock Demo object."""
self.kills = pd.DataFrame({"data": [1, 2, 3]})
self.damages = pd.DataFrame({"data": [1, 2, 3]})
Expand Down

0 comments on commit 4367649

Please sign in to comment.