diff options
| author | morefigs <morefigs@gmail.com> | 2019-03-28 16:31:36 +1100 |
|---|---|---|
| committer | morefigs <morefigs@gmail.com> | 2019-03-28 16:31:36 +1100 |
| commit | 4ebccda66593280aff8dfb380861e91286fbf1f8 (patch) | |
| tree | c207ab8d1f35db83f5259974c29919990b7295dc | |
| parent | a2f5180bb54cbb9c4e927af006d4f8edd3130e8d (diff) | |
| download | pymba-4ebccda66593280aff8dfb380861e91286fbf1f8.tar.gz pymba-4ebccda66593280aff8dfb380861e91286fbf1f8.zip | |
Removed unneeded check
| -rw-r--r-- | pymba/camera.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pymba/camera.py b/pymba/camera.py index 7433f5e..039b667 100644 --- a/pymba/camera.py +++ b/pymba/camera.py @@ -292,8 +292,7 @@ class Camera(VimbaObject): self._is_armed = False # automatically stop acquisition if required - if self._is_acquiring: - self.stop_frame_acquisition() + self.stop_frame_acquisition() # clean up self.end_capture() |
