765fe64b6e96c365aaee4867c5a8381a883c5bc6,src/python/pants/core/goals/fmt.py,,fmt,#Any#Any#Any#Any#Any#,131

Before Change


        merged_formatted_digest = await Get(Digest, MergeDigests(changed_digests))
        workspace.write_digest(merged_formatted_digest)

    sorted_results = sorted(individual_results, key=lambda res: res.formatter_name)
    for result in sorted_results:
        console.print_stderr(
            f"{console.green("✓")} {result.formatter_name} made no changes."
            if not result.did_change

After Change


    // We group all results for the same formatter so that we can give one final status in the
    // summary. This is only relevant if there were multiple results because of
    // `--per-target-caching`.
    formatter_to_results = defaultdict(set)
    for result in individual_results:
        formatter_to_results[result.formatter_name].add(result)

    for formatter, results in sorted(formatter_to_results.items()):
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: pantsbuild/pants
Commit Name: 765fe64b6e96c365aaee4867c5a8381a883c5bc6
Time: 2020-08-16
Author: 14852634+Eric-Arellano@users.noreply.github.com
File Name: src/python/pants/core/goals/fmt.py
Class Name:
Method Name: fmt


Project Name: googledatalab/pydatalab
Commit Name: 2137c84c95286a1c888140cf425c27ff087271bb
Time: 2017-04-21
Author: brandondutra@google.com
File Name: solutionbox/structured_data/mltoolbox/_structured_data/preprocess/local_preprocess.py
Class Name:
Method Name: run_numerical_categorical_analysis


Project Name: coala/coala-bears
Commit Name: c35a2ed04935fd7665514e6af7828f1bfd931a03
Time: 2018-07-20
Author: 7020962+anctartica@users.noreply.github.com
File Name: .ci/generate_bear_requirements.py
Class Name:
Method Name: get_all_requirements