Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
change closing state from STATE_CLOSED to STATE_OPEN as it's technically still open until closed.
  • Loading branch information
arraylabs authored Jun 15, 2018
1 parent 2f1969f commit ce5dbb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymyq/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class MyQAPI:
'2': STATE_CLOSED, #'close',
'3': STATE_OPEN, #'stopped',
'4': STATE_OPEN, #'opening',
'5': STATE_CLOSED, #'closing',
'5': STATE_OPEN, #'closing',
'8': STATE_OPEN, #'in_transition',
'9': STATE_OPEN, #'open'
}
Expand Down

0 comments on commit ce5dbb6

Please sign in to comment.