summaryrefslogtreecommitdiff
path: root/chromium/tools/json_schema_compiler/json_parse.py
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/tools/json_schema_compiler/json_parse.py')
-rw-r--r--chromium/tools/json_schema_compiler/json_parse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/tools/json_schema_compiler/json_parse.py b/chromium/tools/json_schema_compiler/json_parse.py
index 9502e91d5c2..21a5a8f6c59 100644
--- a/chromium/tools/json_schema_compiler/json_parse.py
+++ b/chromium/tools/json_schema_compiler/json_parse.py
@@ -3,7 +3,6 @@
# found in the LICENSE file.
import json
-import logging
import os
import sys
@@ -57,5 +56,6 @@ except ImportError:
return simplejson.loads(json_comment_eater.Nom(json_str),
object_pairs_hook=OrderedDict)
+
def IsDict(item):
return isinstance(item, (dict, OrderedDict))