Skip to content

Commit

Permalink
only yellow semaphore
Browse files Browse the repository at this point in the history
  • Loading branch information
matteotolloso committed Dec 6, 2023
1 parent b1ae663 commit 2362ef2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion smartreport_app/kb_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ def kb_interface(params):
value = resp['value'][-1]
response = {
'value': int(value * 100) , # should be only one or take the last one
'color' : random.choice(['red', 'yellow', 'green'])
# 'color' : random.choice(['red', 'yellow', 'green'])
'color' : random.choice(['yellow'])

}
return response

Expand Down

0 comments on commit 2362ef2

Please sign in to comment.