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

Unified Diff: recipe_engine/step_runner.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/step_runner.py
diff --git a/recipe_engine/step_runner.py b/recipe_engine/step_runner.py
index 9f344524f48fe018bff658533c4943fd5f3f9123..3473f94e246be63171d55da39cd63295e8546f49 100644
--- a/recipe_engine/step_runner.py
+++ b/recipe_engine/step_runner.py
@@ -2,16 +2,17 @@
# Use of this source code is governed under the Apache License, Version 2.0
# that can be found in the LICENSE file.
-import StringIO
+import calendar
Vadim Sh. 2017/02/21 05:46:26 used on line 388, but wasn't imported
import collections
import contextlib
import datetime
import json
import os
import re
+import StringIO
import sys
-import time
import tempfile
+import time
import traceback
from . import recipe_api

Powered by Google App Engine
This is Rietveld 408576698