Skip to content
Open
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
6 changes: 6 additions & 0 deletions .claude/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"attribution": {
"commit": "",
"pr": ""
}
}
Comment thread
harshareddy832 marked this conversation as resolved.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ analyze.py
.idea/
.venv*/

# Claude Code
.claude/
Comment on lines +68 to +69
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

While I'm fine with adding .claude to .gitignore, this should be done in a separate PR to keep our git history clean.


# Mypy cache
.mypy_cache/

Expand Down
2 changes: 1 addition & 1 deletion stubs/pyserial/serial/serialutil.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,6 @@ class SerialBase(io.RawIOBase):
def apply_settings(self, d: dict[str, Any]) -> None: ...
def readinto(self, buffer: WriteableBuffer, /) -> int: ... # returns int unlike `io.RawIOBase`
def send_break(self, duration: float = 0.25) -> None: ...
def read_all(self) -> bytes | None: ...
def read_all(self) -> bytes: ...
def read_until(self, expected: bytes = b"\n", size: int | None = None) -> bytes: ...
def iread_until(self, expected: bytes = ..., size: int | None = ...) -> Generator[bytes]: ...
Loading