mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-02 19:56:52 +00:00
Manager.run_parallel: Remove useless sort by (column, column)
Manager.report later sorts the results correctly by (line, column). Signed-off-by: Anders Kaseorg <andersk@mit.edu>
This commit is contained in:
parent
f94e0095fd
commit
f17de702a5
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