I have a working python script that does not display any warning messages because I have included,
import warnings
warnings.filterwarnings('ignore')
The problem is that when I compile my code down into the exe using pyinstaller and run the exe I see the warnings. The warning message is simply telling me that a file was found but should not exist.
How can I have my exe hide the warning message?