@staticmethoddefvisible_hidden_coloc(waypoint_list):
forwinrange(len(waypoint_list)):
ifwaypoint_list[w].is_hidden!=waypoint_list[0].is_hidden:
returnTruereturnFalse
for w in range(len(waypoint_list)):
->
for w in range(1,len(waypoint_list)):
I thought I'd already fixed this.
for w in range(len(waypoint_list)):->
for w in range(1,len(waypoint_list)):I thought I'd already fixed this.