Skip to content

Commit 0f8138f

Browse files
committed
Rename --limit to --number for consistency
1 parent 4a23b44 commit 0f8138f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

issues_by_dev.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,9 @@ def main() -> None:
8585
"-m", "--markdown", action="store_true", help="Output in Markdown"
8686
)
8787
parser.add_argument("--links", action="store_true", help="Add links")
88-
parser.add_argument("--limit", type=int, help="Limit to this number of usernames")
88+
parser.add_argument(
89+
"-n", "--number", type=int, help="Limit to this number of usernames"
90+
)
8991
parser.add_argument("-j", "--json", action="store_true", help="output to JSON file")
9092
args = parser.parse_args()
9193

0 commit comments

Comments
 (0)