services/worker/src/worker/job_runners/dataset/compatible_libraries.py [397:413]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            )
    loading_codes: list[LoadingCode] = [
        {
            "config_name": config.name,
            "arguments": {"splits": {str(split): data_files[0] for split, data_files in config.data_files.items()}},
            "code": "",
        }
        for config in builder_configs
    ]
    is_single_file = all(
        "*" not in data_file and "[" not in data_file
        for loading_code in loading_codes
        for data_file in loading_code["arguments"]["splits"].values()
    )
    comment = LOGIN_COMMENT if login_required else ""
    if is_single_file:
        library = "pandas"
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



services/worker/src/worker/job_runners/dataset/compatible_libraries.py [463:479]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            )
    loading_codes: list[LoadingCode] = [
        {
            "config_name": config.name,
            "arguments": {"splits": {str(split): data_files[0] for split, data_files in config.data_files.items()}},
            "code": "",
        }
        for config in builder_configs
    ]
    is_single_file = all(
        "*" not in data_file and "[" not in data_file
        for loading_code in loading_codes
        for data_file in loading_code["arguments"]["splits"].values()
    )
    comment = LOGIN_COMMENT if login_required else ""
    if is_single_file:
        library = "pandas"
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



