diff options
author | DHNishi@gmail.com <DHNishi@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-10 23:14:04 +0000 |
---|---|---|
committer | DHNishi@gmail.com <DHNishi@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-10 23:14:04 +0000 |
commit | baed4d3ddf78ceb4661ed9414248dfd8baf1b8ab (patch) | |
tree | 920214c422efc03a58fc9b5c7d5c08e92260dc06 /tools/json_schema_compiler/json_schema.py | |
parent | 9879b5d724763606e4d69da859e690dc5d06b0ef (diff) | |
download | chromium_src-baed4d3ddf78ceb4661ed9414248dfd8baf1b8ab.zip chromium_src-baed4d3ddf78ceb4661ed9414248dfd8baf1b8ab.tar.gz chromium_src-baed4d3ddf78ceb4661ed9414248dfd8baf1b8ab.tar.bz2 |
Clean up JSON Schema Compiler's pylint errors.
Review URL: https://chromiumcodereview.appspot.com/23549025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@222389 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/json_schema_compiler/json_schema.py')
-rw-r--r-- | tools/json_schema_compiler/json_schema.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/json_schema_compiler/json_schema.py b/tools/json_schema_compiler/json_schema.py index 0fa1ba5..ae126c2 100644 --- a/tools/json_schema_compiler/json_schema.py +++ b/tools/json_schema_compiler/json_schema.py @@ -3,11 +3,8 @@ # found in the LICENSE file. import copy -import os -import sys import json_parse -import schema_util def DeleteNodes(item, delete_key): """Deletes the given nodes in item, recursively, that have |delete_key| as @@ -31,15 +28,18 @@ def DeleteNodes(item, delete_key): return item + def Load(filename): with open(filename, 'r') as handle: schemas = json_parse.Parse(handle.read()) return schemas + # A dictionary mapping |filename| to the object resulting from loading the JSON # at |filename|. _cache = {} + def CachedLoad(filename): """Equivalent to Load(filename), but caches results for subsequent calls""" if filename not in _cache: |