0

I use sublime , this is my code:

when I build it, it warning:

and my python version is 3.6.4.

how could i do? thank you!

  • 1
    Please, post code as code and text as text, not as photographs of code and photographs of text. This is a programming website, not a photography website, we want to copy&paste&read&debug your code, not critique its use of color and perspective. – Jörg W Mittag Oct 21 '18 at 14:02

1 Answers1

3

It's just a warning, and it's in a module that isn't written by you, so you can either upgrade your dependencies to try to resolve it, or ignore it, or filter it out using the warnings module: How to disable python warnings

John Zwinck
  • 239,568
  • 38
  • 324
  • 436