ci: all jobs use python3 by default

This commit is contained in:
Chen Yu Dong
2020-11-11 11:31:17 +08:00
committed by bot
parent 2558830339
commit 454edcc0a8
17 changed files with 36 additions and 41 deletions

View File

@@ -167,7 +167,7 @@ class Security1(Security):
return -1
def encrypt_data(self, data):
return self.cipher.update(data)
return self.cipher.update(tobytes(data))
def decrypt_data(self, data):
return self.cipher.update(data)
return self.cipher.update(tobytes(data))