copter_table_models: Update position column check

This commit is contained in:
Arthur Golubtsov
2019-11-01 19:12:14 +03:00
parent 0b23fd6e53
commit e26f7a861a

View File

@@ -311,7 +311,7 @@ def check_selfcheck(item):
def check_pos_status(item):
if not item:
return None
return item.split(' ')[0] != 'nan' or item.split(' ')[0] != 'NO_POS'
return item.split(' ')[0] != 'nan' and item.split(' ')[0] != 'NO_POS'
@col_check(9)
def check_start_pos_status(item):