Python Futurewarnings are hopelessly annoying when debugging your code. Offcourse it needs attentention but we want to ignore it during development.

In orde to disable this, add before your code:

## Temp disable FutureWarnings
import warnings
warnings.simplefilter(action='ignore', category=FutureWarning)
## End Temp disable FutureWarnings