Skip to content

Commit

Permalink
Merge pull request #38 from gmagogsfm/fix_syntax
Browse files Browse the repository at this point in the history
Add missing parenthesis when invoking _pull_raw_image method
  • Loading branch information
tomshaffner authored Oct 2, 2024
2 parents a1d27a9 + 3550bb4 commit 81036a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pithermalcam/pi_therm_cam.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,11 +232,11 @@ def update_image_frame(self):

def update_raw_image_only(self):
"""Update only raw data without any further image processing or text updating"""
self._pull_raw_image
self._pull_raw_image()

def get_current_raw_image_frame(self):
"""Return the current raw image"""
self._pull_raw_image
self._pull_raw_image()
return self._raw_image

def get_current_image_frame(self):
Expand Down

0 comments on commit 81036a2

Please sign in to comment.