Can Player compatibility with interfaces that use additional configuration by MattWoodhead · Pull Request #1610 · hardbyte/python-can · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
6 changes: 5 additions & 1 deletion can/io/mf4.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,11 @@ class MF4Reader(BinaryIOMessageReader):
The MF4Reader only supports MF4 files that were recorded with python-can.
"""

def __init__(self, file: Union[StringPathLike, BinaryIO]) -> None:
def __init__(
self,
file: Union[StringPathLike, BinaryIO],
**kwargs: Any,
) -> None:
"""
:param file: a path-like object or as file-like object to read from
If this is a file-like object, is has to be opened in
Expand Down
4 changes: 3 additions & 1 deletion can/io/trc.py