Skip to content

Commit

Permalink
Merge pull request #6 from cjstep/patch-1
Browse files Browse the repository at this point in the history
Add closing paren to tuple expression
  • Loading branch information
jcrobak committed Jul 16, 2015
2 parents 51589e5 + e280ae4 commit b7284a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parquet/bitstring.py
Expand Up @@ -16,5 +16,5 @@ def __getitem__(self, key):
except AttributeError:
if key < 0 or key >= length:
raise IndexError()
byte_index, bit_offset = divmod(self.offset + key), 8)
byte_index, bit_offset = (divmod(self.offset + key), 8)
return self.bytes[byte_index] & SINGLE_BIT_MASK[bit_offset]

0 comments on commit b7284a4

Please sign in to comment.