Skip to content

Commit

Permalink
Merge pull request #41 from supajason/fix-36-issue
Browse files Browse the repository at this point in the history
Fix issues #36
  • Loading branch information
robmarkcole committed Sep 1, 2021
2 parents 5137d26 + 05fc8de commit e04437d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion custom_components/platerecognizer/image_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,8 @@ def process_image(self, image):
).json()
self._results = response["results"]
self._plates = get_plates(response['results'])
self._orientations = get_orientations(response['results'])
if self._mmc:
self._orientations = get_orientations(response['results'])
self._vehicles = [
{
ATTR_PLATE: r["plate"],
Expand Down

0 comments on commit e04437d

Please sign in to comment.