Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1#!/usr/bin/env python 

2 

3from lsst.verify.bin.jobReporter import main, build_argparser 

4 

5 

6if __name__ == "__main__": 6 ↛ 7line 6 didn't jump to line 7, because the condition on line 6 was never true

7 parser = build_argparser() 

8 args = parser.parse_args() 

9 main(args.repository, 

10 args.collection, 

11 args.metrics_package, 

12 args.spec, 

13 args.dataset_name)