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 a206a37 commit 44ded64Copy full SHA for 44ded64
.github/scripts/get_release_props.py
@@ -5,7 +5,7 @@
5
# "click",
6
# ]
7
# ///
8
-
+"""Extract the properties of a configured EEST release from a YAML file."""
9
import sys
10
11
import click
@@ -17,7 +17,7 @@
17
@click.command()
18
@click.argument('release', required=True)
19
def get_release_props(release):
20
- """Extracts a specific property from the YAML file for a given release."""
+ """Extract the properties from the YAML file for a given release."""
21
with open(RELEASE_PROPS_FILE) as f:
22
data = yaml.safe_load(f)
23
if release not in data:
0 commit comments