1# pylint: disable=too-few-public-methods 2 3class RSA: 4 def get_backend(self): 5 return "fallback" 6 7 8rsa = RSA()