diff options
| author | morefigs <morefigs@gmail.com> | 2018-10-17 12:42:38 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-17 12:42:38 +1100 |
| commit | 0bc462cc23fd7f09b7f7326f62f169acaab0abcb (patch) | |
| tree | af69396c821f740459c20db246a10d8dbfd7a4f6 | |
| parent | 2ff0a719a39a36aa9afcb260da47f0289e98be8c (diff) | |
| download | pymba-0bc462cc23fd7f09b7f7326f62f169acaab0abcb.tar.gz pymba-0bc462cc23fd7f09b7f7326f62f169acaab0abcb.zip | |
Spacing
| -rw-r--r-- | pymba/vimba_frame.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pymba/vimba_frame.py b/pymba/vimba_frame.py index 072aaf8..8cf0c86 100644 --- a/pymba/vimba_frame.py +++ b/pymba/vimba_frame.py @@ -159,8 +159,8 @@ class VimbaFrame(object): POINTER(c_ubyte * self.payloadSize)) # make array of c_ubytes from buffer - imagebytes = int(self.height*self.width*self.pixel_bytes) - array = (c_ubyte*imagebytes).from_address(addressof(data.contents)) + imagebytes = int(self.height * self.width * self.pixel_bytes) + array = (c_ubyte * imagebytes).from_address(addressof(data.contents)) return array |
