removed SaveSettingsValidation from settings init

This commit is contained in:
iLLiCiTiT 2021-04-21 11:14:39 +02:00
parent 9ac5427aaf
commit cc3f483aec
2 changed files with 2 additions and 4 deletions

View file

@ -1,6 +1,5 @@
from .exceptions import (
SaveWarning,
SaveSettingsValidation
SaveWarning
)
from .lib import (
get_system_settings,
@ -17,7 +16,6 @@ from .entities import (
__all__ = (
"SaveWarning",
"SaveSettingsValidation",
"get_system_settings",
"get_project_settings",

View file

@ -7,5 +7,5 @@ class SaveWarning(SaveSettingsValidation):
if isinstance(warnings, str):
warnings = [warnings]
self.warnings = warnings
msg = ", ".join(warnings)
msg = " | ".join(warnings)
super(SaveWarning, self).__init__(msg)