Invert raw format flag to determine varint format usage in main function

This commit is contained in:
yashksaini-coder
2025-09-18 23:37:26 +05:30
parent 3f30ed4437
commit a862ac83cd

View File

@ -300,7 +300,7 @@ def main() -> None:
# Determine format: use varint (length-prefixed) if --raw-format is specified,
# otherwise use raw protobuf format (old format)
use_varint_format = args.raw_format
use_varint_format = not args.raw_format
try:
if args.destination: