Skip to content

Commit 0c59e68

Browse files
Apply suggestions from code review
Co-authored-by: Mathieu Leplatre <[email protected]>
1 parent 3f16639 commit 0c59e68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/jbi/configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class ConfigError(Exception):
2121
def get_actions(
2222
jbi_config_file: str = f"config/config.{settings.env}.yaml",
2323
) -> Actions:
24-
"""Convert and validate YAML configuration to Action object"""
24+
"""Convert and validate YAML configuration to `Action` objects"""
2525

2626
with open(jbi_config_file, encoding="utf-8") as file:
2727
try:
@@ -34,5 +34,5 @@ def get_actions(
3434

3535

3636
def get_actions_dict():
37-
"""Returns dict of"""
37+
"""Returns dict of `get_actions()`"""
3838
return get_actions().dict()["actions"]

0 commit comments

Comments
 (0)