Skip to content

Commit

Permalink
copter_table_models: Update position column check
Browse files Browse the repository at this point in the history
  • Loading branch information
goldarte committed Nov 1, 2019
1 parent 0b23fd6 commit e26f7a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Server/copter_table_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit e26f7a8

Please sign in to comment.