Skip to content

Commit 44ded64

Browse files
committed
style(lint): fix docstrings in github script
1 parent a206a37 commit 44ded64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/scripts/get_release_props.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# "click",
66
# ]
77
# ///
8-
8+
"""Extract the properties of a configured EEST release from a YAML file."""
99
import sys
1010

1111
import click
@@ -17,7 +17,7 @@
1717
@click.command()
1818
@click.argument('release', required=True)
1919
def get_release_props(release):
20-
"""Extracts a specific property from the YAML file for a given release."""
20+
"""Extract the properties from the YAML file for a given release."""
2121
with open(RELEASE_PROPS_FILE) as f:
2222
data = yaml.safe_load(f)
2323
if release not in data:

0 commit comments

Comments
 (0)