Skip to content

Commit fb0cb7d

Browse files
committed
fix pylint
1 parent 9ef97fb commit fb0cb7d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

services/clusters-keeper/tests/unit/test_core_settings.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,14 +128,17 @@ def test_valid_application_settings(
128128
$ pytest --external-envfile=.secrets --pdb tests/unit/test_core_settings.py
129129
130130
"""
131+
132+
# Mock
131133
assert app_environment
132134
if external_envfile_dict:
133135
delenvs_from_dict(monkeypatch, app_environment, raising=False)
134-
return setenvs_from_dict(
136+
setenvs_from_dict(
135137
monkeypatch,
136138
{**external_envfile_dict},
137139
)
138140

141+
# Test
139142
settings = ApplicationSettings() # type: ignore
140143
assert settings
141144

0 commit comments

Comments
 (0)