Skip to content

fix: fix README.md usage example #15

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ message Test1 {
# binary
0A 09 ED 85 8C EC 8A A4 ED 8A B8
"""
from protobuf_decoder.protobuf_decoder import Parser
from protobuf_decoder.protobuf_decoder import Parser, ParsedResults ,ParsedResult

test_target = "0A 09 ED 85 8C EC 8A A4 ED 8A B8"
parsed_data = Parser().parse(test_target)
Expand Down Expand Up @@ -60,7 +60,7 @@ message Test2 {
# binary
1a 03 08 96 01
"""
from protobuf_decoder.protobuf_decoder import Parser
from protobuf_decoder.protobuf_decoder import Parser, ParsedResults ,ParsedResult

test_target = "1a 03 08 96 01"
parsed_data = Parser().parse(test_target)
Expand Down Expand Up @@ -91,7 +91,7 @@ message Test1 {
0A 03 E2 9C 8A

"""
from protobuf_decoder.protobuf_decoder import Parser
from protobuf_decoder.protobuf_decoder import Parser, ParsedResults ,ParsedResult

test_target = "0A 03 E2 9C 8A"
parsed_data = Parser().parse(test_target)
Expand Down