Skip to content

Commit 599845b

Browse files
docs: Minor textual cleanups in PR comments script
This commit applies minor textual updates to the `scripts/gha/get_pr_review_comments.py` script: - Removed an explanatory comment from the `import firebase_github` line for a cleaner import block. - Refined the script's description in the command-line help text for slightly improved conciseness (removed an article "a").
1 parent 7e182aa commit 599845b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/gha/get_pr_review_comments.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import argparse
1919
import os
2020
import sys
21-
import firebase_github # Assumes firebase_github.py is in the same directory or python path
21+
import firebase_github
2222
import datetime
2323
from datetime import timezone, timedelta
2424

@@ -36,7 +36,7 @@ def main():
3636
default_repo = firebase_github.REPO
3737

3838
parser = argparse.ArgumentParser(
39-
description="Fetch review comments from a GitHub PR and format into a simple text output.",
39+
description="Fetch review comments from a GitHub PR and format into simple text output.",
4040
formatter_class=argparse.RawTextHelpFormatter
4141
)
4242
parser.add_argument(

0 commit comments

Comments
 (0)