conform to standard

This commit is contained in:
Danny Ryan 2019-01-07 08:13:26 -07:00 committed by GitHub
parent fb17be0e9b
commit 31d4ca594d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ All integers are interpreted as **big endian**.
byte_length = int_size / 8
new_index = current_index + byte_length
assert(len(rawbytes) >= new_index)
return int.from_bytes(rawbytes[current_index:new_index], 'big'), new_index
return int.from_bytes(rawbytes[current_index:current_index+byte_length], 'big'), new_index
```
#### Bool