datascan/bulk-creation-scripts/dataquality /main.py [68:82]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    config_path: Path,
) -> None:

    if config_path:
        # validate config file
        print(f'Checking the configuration file located at {config_path}')
        configs = validateConfigFile(config_path)

        for config in configs:
            gcp_project_id = config['projectId']
            location_id = config['locationId']
            full_table_name = config['bqTable']
            project_id = full_table_name.split('.')[0]
            dataset_id = full_table_name.split('.')[1]
            table_id = full_table_name.split('.')[2]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



datascan/bulk-creation-scripts/main.py [54:68]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    config_path: Path,
) -> None:

    if config_path:
        # validate the config file
        print(f'Checking the configuration file located at {config_path}')
        configs = validateConfigFile(config_path)

        for config in configs:
            gcp_project_id = config['projectId']
            location_id = config['locationId']
            full_table_name = config['bqTable']
            project_id = full_table_name.split('.')[0]
            dataset_id = full_table_name.split('.')[1]
            table_id = full_table_name.split('.')[2]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



