devserver: module import cleanup
* Import statements re-grouped: standard lib, third party,
project-local; separated by a single line, preceded by a single line
and followed by two lines. Each group is sorted alphabetically.
* Removed unused imports.
BUG=None
TEST=Passes unit tests.
Change-Id: Iee4f78b1256457bd19b2c159a29763ba3404c272
Reviewed-on: https://gerrit.chromium.org/gerrit/33859
Reviewed-by: Chris Sosa <sosa@chromium.org>
Commit-Ready: Gilad Arnold <garnold@chromium.org>
Tested-by: Gilad Arnold <garnold@chromium.org>
diff --git a/build_util.py b/build_util.py
index 84af58e..38658dd 100644
--- a/build_util.py
+++ b/build_util.py
@@ -2,7 +2,9 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-import os, sys
+import os
+import sys
+
class BuildObject(object):
"""