Skip to content

Commit 9a8885f

Browse files
committed
fix: pingmessage.py warning
1 parent eafabba commit 9a8885f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/docs-verify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ jobs:
2828
run: sudo apt-get update && sudo apt-get install -y doxygen
2929

3030
- name: Build docs
31-
run: make -C docs test
31+
run: make -C docs test BUILDDIR="_build/$output_dir"
3232

brping/pingmessage.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -390,8 +390,7 @@ def parse_byte(self, msg_byte):
390390
'msg_byte' is the byte to parse.
391391
If it completes a valid message, returns PingParser.NEW_MESSAGE.
392392
The decoded PingMessage will be available in the self.rx_msg attribute
393-
until a new message is decoded.
394-
393+
until a new message is decoded.
395394
"""
396395
# Apply the relevant parsing method for the current state.
397396
# (offset by 1 because NEW_MESSAGE isn't processed - start at WAIT_START)

0 commit comments

Comments
 (0)