#!/usr/bin/env python

"""
Build the HTML files for QA
"""

from pypeit.scripts import qa_html

if __name__ == '__main__':
    qa_html.main(qa_html.parse_args())

