File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed
supporting-blog-content/github-assistant Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change 2525)
2626parser .add_argument (
2727 "--num_documents" ,
28- type = int ,
28+ type = int ,
2929 default = None ,
30- help = "Number of documents to process (default: all)"
30+ help = "Number of documents to process (default: all)" ,
3131)
3232parser .add_argument (
33- "--skip_documents" ,
34- type = int ,
33+ "--skip_documents" ,
34+ type = int ,
3535 default = 0 ,
36- help = "Number of documents to skip at the beginning (default: 0)"
36+ help = "Number of documents to skip at the beginning (default: 0)" ,
3737)
3838parser .add_argument (
39- "--num_questions" ,
40- type = int ,
39+ "--num_questions" ,
40+ type = int ,
4141 default = None ,
42- help = "Number of questions to process (default: all)"
42+ help = "Number of questions to process (default: all)" ,
4343)
4444parser .add_argument (
4545 "--skip_questions" ,
46- type = int ,
46+ type = int ,
4747 default = 0 ,
48- help = "Number of questions to skip at the beginning (default: 0)"
48+ help = "Number of questions to skip at the beginning (default: 0)" ,
4949)
5050parser .add_argument (
5151 "--process_last_questions" ,
5252 action = "store_true" ,
53- help = "Process last N questions instead of first N"
53+ help = "Process last N questions instead of first N" ,
5454)
5555args = parser .parse_args ()
5656
You can’t perform that action at this time.
0 commit comments