mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-30 10:46:54 +00:00
Merge branch 'useless-sort' into 'master'
Manager.run_parallel: Remove useless sort by (column, column) See merge request pycqa/flake8!429
This commit is contained in:
commit
666be736e0
1 changed files with 1 additions and 3 deletions
|
|
@ -307,9 +307,7 @@ class Manager(object):
|
|||
|
||||
for checker in self.checkers:
|
||||
filename = checker.display_name
|
||||
checker.results = sorted(
|
||||
final_results[filename], key=lambda tup: (tup[2], tup[2])
|
||||
)
|
||||
checker.results = final_results[filename]
|
||||
checker.statistics = final_statistics[filename]
|
||||
|
||||
def run_serial(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue