Skip to content
This repository was archived by the owner on Dec 31, 2023. It is now read-only.

Commit f3c4bb7

Browse files
Takashi Matsuobusunkim96
Takashi Matsuo
authored andcommitted
chore: some lint fixes [(#3748)](GoogleCloudPlatform/python-docs-samples#3748)
1 parent 313601b commit f3c4bb7

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

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)