We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f16639 commit 0c59e68Copy full SHA for 0c59e68
src/jbi/configuration.py
@@ -21,7 +21,7 @@ class ConfigError(Exception):
21
def get_actions(
22
jbi_config_file: str = f"config/config.{settings.env}.yaml",
23
) -> Actions:
24
- """Convert and validate YAML configuration to Action object"""
+ """Convert and validate YAML configuration to `Action` objects"""
25
26
with open(jbi_config_file, encoding="utf-8") as file:
27
try:
@@ -34,5 +34,5 @@ def get_actions(
34
35
36
def get_actions_dict():
37
- """Returns dict of"""
+ """Returns dict of `get_actions()`"""
38
return get_actions().dict()["actions"]
0 commit comments