Skip to content

Commit 040987f

Browse files
committed
Removed the default_environment which is not in use
1 parent c8a55ef commit 040987f

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

helm_values_manager/models/helm_values_config.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ def __init__(self):
3737
self.deployments: Dict[str, Deployment] = {}
3838
self._path_map: Dict[str, PathData] = {}
3939
self._backend = SimpleValueBackend() # For non-sensitive values
40-
self.default_environment = "default"
4140

4241
@classmethod
4342
def _load_schema(cls) -> Dict[str, Any]:

tests/unit/models/test_helm_values_config.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ def test_helm_values_config_initialization():
1111
config = HelmValuesConfig()
1212
assert config.deployments == {}
1313
assert config._path_map == {}
14-
assert config.default_environment == "default"
1514

1615

1716
def test_add_config_path():

0 commit comments

Comments
 (0)