From ddb42b02a4bc13fad239630a10ca282f6ca50cdc Mon Sep 17 00:00:00 2001 From: checktheroads Date: Mon, 20 Jan 2020 19:50:35 -0700 Subject: [PATCH] switch to ujson for .json() exception class method --- hyperglass/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyperglass/exceptions.py b/hyperglass/exceptions.py index 859bf38..a5cd450 100644 --- a/hyperglass/exceptions.py +++ b/hyperglass/exceptions.py @@ -1,7 +1,7 @@ """Custom exceptions for hyperglass.""" # Standard Library Imports -import json as _json +import ujson as _json # Project Imports from hyperglass.util import log