We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f20bb5 commit 891c44cCopy full SHA for 891c44c
src/REST/keywords.py
@@ -4,6 +4,7 @@
4
# Copyright(C) 2018- Anssi Syrjäsalo (http://a.syrjasalo.com)
5
# Licensed under GNU Lesser General Public License v3 (LGPL-3.0).
6
7
+import warnings
8
from collections import OrderedDict
9
from copy import deepcopy
10
from datetime import datetime
@@ -12,7 +13,10 @@
12
13
from os import getcwd, path
14
from urllib.parse import parse_qsl, urljoin, urlparse
15
-from flex.core import validate_api_call
16
+with warnings.catch_warnings():
17
+ warnings.filterwarnings("ignore", category=DeprecationWarning)
18
+ from flex.core import validate_api_call
19
+
20
from genson import SchemaBuilder
21
from jsonpath_ng.ext import parse as parse_jsonpath
22
from jsonschema import FormatChecker, validate
0 commit comments