Closed pathunstrom closed 2 years ago
We use the warnings module to tell users that their python version is deprecated. Unfortunately we seem to have forgotten to import the module!
Add import warnings under import logging so we don't error out while trying to warn our users!
import warnings
import logging
Going to quickly take care of this, I think.
We use the warnings module to tell users that their python version is deprecated. Unfortunately we seem to have forgotten to import the module!
Add
import warnings
underimport logging
so we don't error out while trying to warn our users!