Fixed for mypy errors

This commit is contained in:
Dimitris Zlatanidis 2024-04-22 17:31:23 +03:00
parent 4f55c24234
commit eef7bd0d82

View file

@ -5,7 +5,7 @@
class TomlErrors:
def __init__(self):
self.tool_name: str = 'slpkg'
self.tool_name: str = 'slpkg' # type: ignore[annotation-unchecked]
def raise_toml_error_message(self, error, toml_file) -> None:
""" A general error message for .toml configs files. """