diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2023-03-01 00:35:39 +0100 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2023-03-01 00:35:39 +0100 |
| commit | b0236124fb328f5d1e863f3c76e6d57273519a15 (patch) | |
| tree | 9b28b3637061f8ff1637e88adf8914a069baf5b1 /wrappers/python/eduvpn_common/error.py | |
| parent | a1519ff7685ac987f9d70b1fb49bf777028d49b0 (diff) | |
Format: Run black and gofumpt
Diffstat (limited to 'wrappers/python/eduvpn_common/error.py')
| -rw-r--r-- | wrappers/python/eduvpn_common/error.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/wrappers/python/eduvpn_common/error.py b/wrappers/python/eduvpn_common/error.py index a642a70..3d84331 100644 --- a/wrappers/python/eduvpn_common/error.py +++ b/wrappers/python/eduvpn_common/error.py @@ -7,6 +7,7 @@ class WrappedError(Exception): :param: traceback: str: The traceback of the error including newlines :param: cause: str: The cause of the error as a message """ + def __init__(self, traceback: str, cause: str): super(WrappedError, self).__init__(cause) self.traceback = traceback |
