Merge pull request #1146 from AndPim4912/GetGpt-debian-compat

Update GetGpt provider for Debian python3-pycryptodome compatibility
pull/1148/head
Tekky 11 months ago committed by GitHub
commit 6363353670
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,7 +5,10 @@ import os
import uuid
import requests
from Crypto.Cipher import AES
try:
from Crypto.Cipher import AES
except ImportError:
from Cryptodome.Cipher import AES
from ...typing import Any, CreateResult
from ..base_provider import BaseProvider

Loading…
Cancel
Save