Update simple-serialize.md

This commit is contained in:
Justin 2019-04-14 00:00:46 +10:00 committed by GitHub
parent 27cf02a9b0
commit a90bcc0cd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ assert sum(fixed_lengths + variable_lengths) < 2**(BYTES_PER_LENGTH_OFFSET * BIT
offsets = [sum(fixed_lengths + variable_lengths[:i]) for i in range(len(value))]
fixed_parts = [part if part != None else offsets[i] for i, part in enumerate(fixed_parts)]
# Return the fixed parts (with offsets interleaved) followed by variable parts
# Return the fixed parts (with offsets interleaved) followed by the variable parts
return "".join(fixed_parts + variable_parts)
```