1
0
Fork 0
eos-downloader/eos_downloader/tools.py

14 lines
288 B
Python
Raw Normal View History

#!/usr/bin/python
# coding: utf-8 -*-
"""Module for tools related to ardl"""
def exc_to_str(exception: Exception) -> str:
"""
Helper function to parse Exceptions
"""
return (
f"{type(exception).__name__}{f' ({str(exception)})' if str(exception) else ''}"
)