<#21066 [Call-by-name]: Migration does not handle ...
# github-notifications
c
#21066 [Call-by-name]: Migration does not handle multiple MultiGet in the same line Issue created by sureshjoshi Another reason why libcst is the way to go - the re-formulation of these files is trifficult. Before:
Copy code
clangformat_pex, config_files = await MultiGet(
    Get(Pex, PexRequest, clangformat.to_pex_request()), config_files_get
)
After:
Copy code
clangformat_pex, config_files = await concurrently(
    create_pex(**implicitly({clangformat.to_pex_request(): PexRequest})),
)
Lost the
config_files_get
pantsbuild/pants