mirror of
https://github.com/CopterExpress/clever-show.git
synced 2026-06-05 03:29:33 +00:00
copter_table_models: Update position column check
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user