8000 chore: some lint fixes [(#3748)](https://github.com/GoogleCloudPlatfo… · googleapis/google-cloud-python@972f358 · GitHub
[go: up one dir, main page]

Skip to content

Commit 972f358

Browse files
Takashi Matsuobusunkim96
authored andcommitted
1 parent 8db3007 commit 972f358

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

packages/google-cloud-kms/samples/snippets/snippets_test.py

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@
1616
import time
1717
import uuid
1818

19+
from cryptography.exceptions import InvalidSignature
20+
from cryptography.hazmat.backends import default_backend
21+
from cryptography.hazmat.primitives import hashes, serialization
22+
from cryptography.hazmat.primitives.asymmetric import padding, utils
23+
from google.cloud import kms
24+
from google.cloud.kms_v1.proto import resources_pb2
1925
import pytest
2026

2127
from create_key_asymmetric_decrypt import create_key_asymmetric_decrypt
@@ -50,14 +56,6 @@
5056
from verify_asymmetric_ec import verify_asymmetric_ec
5157
from verify_asymmetric_rsa import verify_asymmetric_rsa
5258

53-
from cryptography.exceptions import InvalidSignature
54-
from cryptography.hazmat.backends import default_backend
55-
from cryptography.hazmat.primitives import hashes, serialization
56-
from cryptography.hazmat.primitives.asymmetric import padding, utils
57-
58-
from google.cloud import kms
59-
from google.cloud.kms_v1.proto import resources_pb2
60-
6159

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

0 commit comments

Comments
 (0)
0