mirror of
https://github.com/zrax/pycdc.git
synced 2026-06-23 11:34:07 +00:00
8 lines
166 B
Python
8 lines
166 B
Python
def test(msgtype, flags):
|
|
if flags == 1:
|
|
msgtype = 1
|
|
elif flags == 2:
|
|
msgtype = 2
|
|
elif flags == 3:
|
|
msgtype = 3
|
|
return msgtype
|