Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(559)

Unified Diff: recipe_engine/loader.py

Issue 2702313003: Remove unused imports and fix some other linter errors. (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: recipe_engine/loader.py
diff --git a/recipe_engine/loader.py b/recipe_engine/loader.py
index 12845aabd86a9480ed6b14e3b146b59b96e7e6cc..8f26265d4b94af2897448db6f2149525a73803f6 100644
--- a/recipe_engine/loader.py
+++ b/recipe_engine/loader.py
@@ -3,7 +3,6 @@
# that can be found in the LICENSE file.
import collections
-import contextlib
import imp
import inspect
import os
@@ -15,9 +14,9 @@ from .config import ConfigContext, ConfigGroupSchema
from .config_types import Path, ModuleBasePath, PackageRepoBasePath
from .config_types import RecipeScriptBasePath
from .config_types import RECIPE_MODULE_PREFIX
-from .recipe_api import RecipeApi, RecipeApiPlain, RecipeScriptApi
+from .recipe_api import RecipeApiPlain, RecipeScriptApi
from .recipe_api import _UnresolvedRequirement
-from .recipe_api import Property, BoundProperty
+from .recipe_api import BoundProperty
from .recipe_api import UndefinedPropertyException, PROPERTY_SENTINEL
from .recipe_test_api import RecipeTestApi, DisabledTestData
« no previous file with comments | « recipe_engine/lint_test.py ('k') | recipe_engine/package.py » ('j') | recipe_engine/package.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698