Skip to content

Commit cc9c41e

Browse files
committed
Sort imports in compute.py module
Imports sorted with isort
1 parent ba3078b commit cc9c41e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

devops/scripts/benchmarks/benches/compute.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
# See LICENSE.TXT
44
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
55

6-
from itertools import product
6+
import copy
77
import csv
88
import io
9-
import copy
109
import math
1110
from enum import Enum
11+
from itertools import product
1212
from pathlib import Path
1313

14-
from .base import Benchmark, Suite, TracingType
15-
from utils.result import BenchmarkMetadata, Result
16-
from .base import Benchmark, Suite
17-
from options import options
1814
from git_project import GitProject
15+
from options import options
16+
from utils.result import BenchmarkMetadata, Result
17+
18+
from .base import Benchmark, Suite, TracingType
1919

2020

2121
class RUNTIMES(Enum):

0 commit comments

Comments
 (0)