Skip to content

Commit 6fb043b

Browse files
saschanazkripken
authored andcommitted
remove unused imports (#5882)
1 parent 849bef0 commit 6fb043b

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/parallel_runner.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
from __future__ import print_function
22
import multiprocessing
33
import os
4-
import pickle
54
import subprocess
65
import sys
7-
import time
8-
import traceback
96
import unittest
107

118
try:
@@ -59,7 +56,7 @@ def reversed_tests(self):
5956
tests = []
6057
for test in self:
6158
tests.append(test)
62-
tests.sort(key=lambda test: str(test))
59+
tests.sort(key=str)
6360
return tests[::-1]
6461

6562
def init_processes(self, test_queue):

0 commit comments

Comments
 (0)