Remove banner comments

This commit is contained in:
Veronica Berglyd Olsen
2024-05-10 16:14:47 +02:00
parent 3f4538a60e
commit 1ff9fea378
7 changed files with 57 additions and 97 deletions
-8
View File
@@ -42,10 +42,6 @@ if TYPE_CHECKING: # pragma: no cover
logger = logging.getLogger(__name__)
# =============================================================================================== #
# Utility Functions
# =============================================================================================== #
def logException() -> None:
"""Log the content of an exception message."""
exType, exValue, _ = sys.exc_info()
@@ -61,10 +57,6 @@ def formatException(exc: BaseException) -> str:
return f"{type(exc).__name__}: {str(exc)}"
# =============================================================================================== #
# Error Handler
# =============================================================================================== #
class NWErrorMessage(QDialog):
def __init__(self, parent: QWidget) -> None: