Skip to content

Commit 2828f03

Browse files
committed
Fix syntax error for line split
1 parent 5d0f364 commit 2828f03

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_slots_and_tokens.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ def test_init_token(self):
9191
updated_tokens = lib.get_tokens()
9292

9393
for token in updated_tokens:
94-
if pkcs11.TokenFlag.USER_PIN_INITIALIZED not in token.flags and
95-
pkcs11.TokenFlag.TOKEN_INITIALIZED in token.flags:
94+
if pkcs11.TokenFlag.USER_PIN_INITIALIZED not in token.flags and\
95+
pkcs11.TokenFlag.TOKEN_INITIALIZED in token.flags:
9696
self.assertEqual(token.label, temp_token_label)
9797

9898
'''

0 commit comments

Comments
 (0)