-
Notifications
You must be signed in to change notification settings - Fork 2
First set of updates considering RUFF analysis #269
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 16 commits
6a58cc4
7e85013
f14a0a9
0d55d91
da6d244
206efee
b295a7f
d88ff2d
77f8170
198bacf
3cfcb2b
b0a4dc2
0bbfc5b
f296b43
f0a272d
4ad4561
3c4c9ac
5cad20e
de0bfb8
b3d9278
bbce824
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,3 +16,4 @@ fixtures/* | |
| !fixtures/.keep | ||
| *.sedbck | ||
| tmp | ||
| .cache | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -149,7 +149,7 @@ def is_connected(self) -> bool: | |
| return self._connection_state | ||
|
|
||
| def correct_processed_messages(self, correction: int) -> None: | ||
| """Return the number of processed messages.""" | ||
| """Correct the number of processed messages.""" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this read: Return the number of correct processed messages?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The reasons I believe Correct is the best choice of words:
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Agreed, I've come to the same conclusion after tracing the use of the function. |
||
| self._processed_msgs += correction | ||
|
|
||
| def connection_made(self, transport: SerialTransport) -> None: | ||
|
|
@@ -513,4 +513,5 @@ async def _notify_node_response_subscribers( | |
| name=f"Postpone subscription task for {node_response.seq_id!r} retry {node_response.retries}", | ||
| ) | ||
|
|
||
|
|
||
| # endregion | ||
Uh oh!
There was an error while loading. Please reload this page.