diff --git a/Server/copter_table_models.py b/Server/copter_table_models.py index 1b48f36..dd669bf 100644 --- a/Server/copter_table_models.py +++ b/Server/copter_table_models.py @@ -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):