apply code formatting

pull/3312/head
Kieran Prasch 2023-10-25 00:34:56 +02:00 committed by KPrasch
parent 701f31bc64
commit dd23224c3a
1 changed files with 2 additions and 3 deletions

View File

@ -3,10 +3,9 @@
class DevelopmentInstallationRequired(RuntimeError):
MESSAGE = '''
MESSAGE = """
A development installation of nucypher is required to import {importable_name}.
'''
"""
def __init__(self, importable_name: str, *args, **kwargs):
msg = self.MESSAGE.format(importable_name=importable_name)