From 1ad75f7053598bb8eae0bd9e6afcf495a40d6815 Mon Sep 17 00:00:00 2001 From: Robert Wikman Date: Mon, 17 Dec 2018 16:40:52 +0100 Subject: [PATCH] #103 removes DeprecationWarning filter --- pysnow/client.py | 2 -- pysnow/oauth_client.py | 2 -- 2 files changed, 4 deletions(-) diff --git a/pysnow/client.py b/pysnow/client.py index 13bf6e0..9457597 100644 --- a/pysnow/client.py +++ b/pysnow/client.py @@ -14,8 +14,6 @@ from .url_builder import URLBuilder from .params_builder import ParamsBuilder -warnings.simplefilter("always", DeprecationWarning) - logger = logging.getLogger('pysnow') diff --git a/pysnow/oauth_client.py b/pysnow/oauth_client.py index f37350f..f06733d 100644 --- a/pysnow/oauth_client.py +++ b/pysnow/oauth_client.py @@ -10,8 +10,6 @@ from .client import Client from .exceptions import InvalidUsage, MissingToken, TokenCreateError -warnings.simplefilter("always", DeprecationWarning) - logger = logging.getLogger('pysnow')