Skip to content

Commit 48a67f5

Browse files
cleanup
1 parent 233faa7 commit 48a67f5

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

examples/test/multithreading/test_i_raw_aes_keyring_multithreaded_example.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ def encrypt_and_decrypt_with_keyring_multithreaded_helper(n_threads=64, duration
3333
future.result()
3434

3535

36-
def test_encrypt_and_decrypt_with_keyring_multithreaded(n_threads_list: list = [1, 4, 16, 64], duration_list: list = [2, 10, 60]):
36+
def test_encrypt_and_decrypt_with_keyring_multithreaded(
37+
n_threads_list: list = [1, 4, 16, 64], # pylint: disable=W0102
38+
duration_list: list = [2, 10, 60] # pylint: disable=W0102
39+
):
3740
"""Test function for multi-threaded encrypt and decrypt using a keyring for different n_threads and duration."""
3841
for n in n_threads_list:
3942
for d in duration_list:

examples/test/multithreading/test_i_raw_rsa_keyring_multithreaded_example.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ def encrypt_and_decrypt_with_keyring_multithreaded_helper(n_threads=64, duration
3434
future.result()
3535

3636

37-
def test_encrypt_and_decrypt_with_keyring_multithreaded(n_threads_list: list = [1, 4, 16, 64], duration_list: list = [2, 10, 60]):
37+
def test_encrypt_and_decrypt_with_keyring_multithreaded(
38+
n_threads_list: list = [1, 4, 16, 64], # pylint: disable=W0102
39+
duration_list: list = [2, 10, 60] # pylint: disable=W0102
40+
):
3841
"""Test function for multi-threaded encrypt and decrypt using a keyring for different n_threads and duration."""
3942
for n in n_threads_list:
4043
for d in duration_list:

0 commit comments

Comments
 (0)