datascan/bulk-creation-scripts/dataquality /main.py [26:33]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
class ListParamType(click.ParamType):
    name = 'list'

    def convert(self, value, param, ctx):
        try:
            bq_tables = value.split(',')
            return bq_tables
        except Exception as e:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



datascan/bulk-creation-scripts/main.py [11:18]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
class ListParamType(click.ParamType):
    name = 'list'

    def convert(self, value, param, ctx):
        try:
            bq_tables = value.split(',')
            return bq_tables
        except Exception as e:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



