It should be mentioned here but queue.pop won’t work well on python so every one, use queue.shift() [Adventurer] Queue Manager:
array.pop(0)
doesn’t work.
array.pop(N) where N > 0
works
array.pop()
works
1 Like