Skip to content

Commit

Permalink
fix: fixes dict read error
Browse files Browse the repository at this point in the history
  • Loading branch information
Russell Green committed Jun 6, 2023
1 parent f9c4767 commit dd944d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"""
__author__ = "Russell Green"
__license__ = "MIT"
__version__ = "1.0.1"
__version__ = "1.0.2"
__maintainer__ = "Russell.Green"
__email__ = "me@rusty.green"
__status__ = "Production"
Expand Down Expand Up @@ -241,7 +241,7 @@ def set_get_pin_value(pin, value):


def get_pin_history(pin):
if pin in gpio_pin_history[pin]:
if pin in gpio_pin_history:
return gpio_pin_history[pin]
else:
return {"lastValue": None}
Expand Down

0 comments on commit dd944d4

Please sign in to comment.