Skip to content

Commit

Permalink
Fix import order.
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisCummins committed Nov 2, 2022
1 parent e429b92 commit 19da5e6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions compiler_gym/datasets/benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,13 @@
from pathlib import Path
from typing import Callable, Iterable, List, NamedTuple, Optional, Union

from compiler_gym.util.decorators import frozen_class
import compiler_gym.errors
from compiler_gym.datasets.uri import BenchmarkUri
from compiler_gym.errors import ValidationError
from compiler_gym.service.proto import Benchmark as BenchmarkProto
from compiler_gym.service.proto import File
from compiler_gym.util import thread_pool
from compiler_gym.util.decorators import memoized_property
from compiler_gym.util.decorators import frozen_class, memoized_property

# A validation callback is a function that takes a single CompilerEnv instance
# as its argument and returns an iterable sequence of zero or more
Expand Down

0 comments on commit 19da5e6

Please sign in to comment.