Skip to content

Commit

Permalink
Remove unused default argument
Browse files Browse the repository at this point in the history
This default isn't used anywhere in the codebase.
  • Loading branch information
meshy committed Jan 19, 2024
1 parent 75b68fa commit 86190a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mypy/dmypy_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def send(connection: IPCBase, data: Any) -> None:
class WriteToConn:
"""Helper class to write to a connection instead of standard output."""

def __init__(self, server: IPCBase, output_key: str = "stdout") -> None:
def __init__(self, server: IPCBase, output_key: str) -> None:
self.server = server
self.output_key = output_key

Expand Down

0 comments on commit 86190a0

Please sign in to comment.