#!/usr/bin/env python
#
# See top-level LICENSE file for Copyright information
#
# -*- coding: utf-8 -*-


"""
This script searches the NEDLVS for foreground halos
that could potentially contribute to the FRB DM.
"""

import frb.scripts.search_for_halos as search_for_halos

if __name__ == '__main__':
    args = search_for_halos.parser()
    search_for_halos.main(args)