Make pylint happy.
diff --git a/buildkite/create_images.py b/buildkite/create_images.py index 1d528b8..57ab913 100755 --- a/buildkite/create_images.py +++ b/buildkite/create_images.py
@@ -19,12 +19,10 @@ import json import os import queue -import re import subprocess import sys import tempfile import threading -import time import gcloud import gcloud_utils
diff --git a/buildkite/create_instances.py b/buildkite/create_instances.py index ed237f9..a9a9424 100755 --- a/buildkite/create_instances.py +++ b/buildkite/create_instances.py
@@ -14,9 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -import getpass import queue -import re import subprocess import sys import threading @@ -127,9 +125,9 @@ gcloud.create_instance_template(template_name, **kwargs) - gcloud.create_instance_group(instance_group_name, - zone=LOCATION, base_instance_name=instance_group_name, template=template_name, - size=count) + gcloud.create_instance_group(instance_group_name, zone=LOCATION, + base_instance_name=instance_group_name, + template=template_name, size=count) def single_instance_task(instance_name, **kwargs):