11 lines
86 B
Python
11 lines
86 B
Python
|
# coding=utf-8
|
||
|
|
||
|
"""
|
||
|
Relay Polarity
|
||
|
"""
|
||
|
|
||
|
NORMALLY_CLOSED = 'nc'
|
||
|
NORMALLY_OPEN = 'no'
|
||
|
|
||
|
|