From af1c431e9ed408fd6792b20e4cf305a9793b9893 Mon Sep 17 00:00:00 2001 From: chops77 Date: Tue, 3 Apr 2018 08:05:10 -0700 Subject: [PATCH] Added code to disable warnings. --- students/Chao/project_fpy/fpy.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/students/Chao/project_fpy/fpy.py b/students/Chao/project_fpy/fpy.py index 5ce34f98..1f42e84a 100644 --- a/students/Chao/project_fpy/fpy.py +++ b/students/Chao/project_fpy/fpy.py @@ -18,6 +18,10 @@ from requests.exceptions import ConnectionError import getpass import ipaddress +import urllib3 + +urllib3.disable_warnings() + class LTM: """ Main Class for Local Traffic Manager Module """