From 4a2567f11f17d757b965fd4c121850424e41b01c Mon Sep 17 00:00:00 2001 From: "gcf-owl-bot[bot]" <78513119+gcf-owl-bot[bot]@users.noreply.github.com> Date: Wed, 20 Apr 2022 20:27:13 -0400 Subject: [PATCH] chore(python): add nox session to sort python imports (#220) Source-Link: https://github.com/googleapis/synthtool/commit/1b71c10e20de7ed3f97f692f99a0e3399b67049f Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:00c9d764fd1cd56265f12a5ef4b99a0c9e87cf261018099141e2ca5158890416 Co-authored-by: Owl Bot --- recaptcha_enterprise/snippets/list_site_keys.py | 1 - recaptcha_enterprise/snippets/test_create_assessment.py | 2 -- 2 files changed, 3 deletions(-) diff --git a/recaptcha_enterprise/snippets/list_site_keys.py b/recaptcha_enterprise/snippets/list_site_keys.py index 6ac03e9b1c46..1c1f64e02a7a 100644 --- a/recaptcha_enterprise/snippets/list_site_keys.py +++ b/recaptcha_enterprise/snippets/list_site_keys.py @@ -14,7 +14,6 @@ # [START recaptcha_enterprise_list_site_keys] from google.cloud import recaptchaenterprise_v1 - from google.cloud.recaptchaenterprise_v1.services.recaptcha_enterprise_service.pagers import ( ListKeysPager, ) diff --git a/recaptcha_enterprise/snippets/test_create_assessment.py b/recaptcha_enterprise/snippets/test_create_assessment.py index 95de628bfa38..70293b3f79c1 100644 --- a/recaptcha_enterprise/snippets/test_create_assessment.py +++ b/recaptcha_enterprise/snippets/test_create_assessment.py @@ -22,7 +22,6 @@ from google.cloud import recaptchaenterprise_v1 from google.cloud.recaptchaenterprise_v1 import Assessment import pytest - from selenium import webdriver from selenium.webdriver.chrome.webdriver import WebDriver @@ -31,7 +30,6 @@ from create_site_key import create_site_key from delete_site_key import delete_site_key - GOOGLE_CLOUD_PROJECT = os.environ["GOOGLE_CLOUD_PROJECT"] DOMAIN_NAME = "localhost" # Switch the multi-processing style for Python > 3.7: https://github.com/pytest-dev/pytest-flask/issues/104