From fd81c39e2fce7f70141c1c0fcf721b2b8969074d Mon Sep 17 00:00:00 2001 From: Takashi Matsuo Date: Tue, 12 May 2020 16:58:04 -0700 Subject: [PATCH] chore: some lint fixes [(#3747)](https://github.com/GoogleCloudPlatform/python-docs-samples/issues/3747) --- samples/api-client/manager/manager_test.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/samples/api-client/manager/manager_test.py b/samples/api-client/manager/manager_test.py index 175f0475..20bac093 100644 --- a/samples/api-client/manager/manager_test.py +++ b/samples/api-client/manager/manager_test.py @@ -18,13 +18,14 @@ import time import uuid -# Add command receiver for bootstrapping device registry / device for testing -sys.path.append(os.path.join(os.path.dirname(__file__), '..', 'mqtt_example')) # noqa from google.cloud import pubsub import pytest -import manager -import cloudiot_mqtt_example +# Add command receiver for bootstrapping device registry / device for testing +sys.path.append(os.path.join(os.path.dirname(__file__), '..', 'mqtt_example')) # noqa +import cloudiot_mqtt_example # noqa +import manager # noqa + cloud_region = 'us-central1' device_id_template = 'test-device-{}'