Skip to content

Commit

Permalink
Flake8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bmerry committed Jan 21, 2019
1 parent 2e1fd80 commit 44f4e37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spead2/test/test_send.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ def test_replicate_pointers(self):
data = np.arange(32, dtype=np.uint8)
item1 = spead2.Item(id=id, name='item1', description='addressed item',
shape=data.shape, dtype=data.dtype, value=data)
item2 = spead2.Item(id=id+1, name='item2', description='inline item',
item2 = spead2.Item(id=id + 1, name='item2', description='inline item',
shape=(), format=[('u', self.flavour.heap_address_bits)],
value=0xdeadbeef)
expected = [
Expand Down

0 comments on commit 44f4e37

Please sign in to comment.