Skip to content

Commit

Permalink
chore: some lint fixes [(#3748)](GoogleCloudPlatform/python-docs-samp…
Browse files Browse the repository at this point in the history
Takashi Matsuo authored and busunkim96 committed Jun 4, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 8db3007 commit 972f358
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions packages/google-cloud-kms/samples/snippets/snippets_test.py
Original file line number Diff line number Diff line change
@@ -16,6 +16,12 @@
import time
import uuid

from cryptography.exceptions import InvalidSignature
from cryptography.hazmat.backends import default_backend
from cryptography.hazmat.primitives import hashes, serialization
from cryptography.hazmat.primitives.asymmetric import padding, utils
from google.cloud import kms
from google.cloud.kms_v1.proto import resources_pb2
import pytest

from create_key_asymmetric_decrypt import create_key_asymmetric_decrypt
@@ -50,14 +56,6 @@
from verify_asymmetric_ec import verify_asymmetric_ec
from verify_asymmetric_rsa import verify_asymmetric_rsa

from cryptography.exceptions import InvalidSignature
from cryptography.hazmat.backends import default_backend
from cryptography.hazmat.primitives import hashes, serialization
from cryptography.hazmat.primitives.asymmetric import padding, utils

from google.cloud import kms
from google.cloud.kms_v1.proto import resources_pb2


@pytest.fixture(scope="module")
def client():

0 comments on commit 972f358

Please sign in to comment.