Fix python extension import (#1000)

This commit is contained in:
Chris Jones 2020-07-09 12:54:41 +01:00 committed by GitHub
parent 39c8d58a76
commit 37177a84b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,7 @@
"""Python benchmarking utilities.
Example usage:
import benchmark
import google_benchmark as benchmark
@benchmark.register
def my_benchmark(state):
@ -28,7 +28,7 @@ Example usage:
"""
from absl import app
from benchmark import _benchmark
from google_benchmark import _benchmark
__all__ = [
"register",