Updated docs
This commit is contained in:
@@ -7,13 +7,12 @@ from cpl_core.console import Console
|
||||
|
||||
|
||||
class PIPSettings(ConfigurationModelABC):
|
||||
|
||||
def __init__(self):
|
||||
ConfigurationModelABC.__init__(self)
|
||||
|
||||
self._production = ''
|
||||
self._staging = ''
|
||||
self._development = ''
|
||||
self._production = ""
|
||||
self._staging = ""
|
||||
self._development = ""
|
||||
|
||||
@property
|
||||
def production(self):
|
||||
@@ -33,5 +32,5 @@ class PIPSettings(ConfigurationModelABC):
|
||||
self._staging = settings[EnvironmentNameEnum.staging.value]
|
||||
self._development = settings[EnvironmentNameEnum.development.value]
|
||||
except Exception as e:
|
||||
Console.error(f'[ ERROR ] [ {__name__} ]: Reading error in {type(self).__name__} settings')
|
||||
Console.error(f'[ EXCEPTION ] [ {__name__} ]: {e} -> {traceback.format_exc()}')
|
||||
Console.error(f"[ ERROR ] [ {__name__} ]: Reading error in {type(self).__name__} settings")
|
||||
Console.error(f"[ EXCEPTION ] [ {__name__} ]: {e} -> {traceback.format_exc()}")
|
||||
|
||||
Reference in New Issue
Block a user