From 37177a84b7e8d33696ea1e1854513cb0de3b4dc3 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Thu, 9 Jul 2020 12:54:41 +0100 Subject: [PATCH] Fix python extension import (#1000) --- bindings/python/google_benchmark/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings/python/google_benchmark/__init__.py b/bindings/python/google_benchmark/__init__.py index 378f0304..c3a93bfc 100644 --- a/bindings/python/google_benchmark/__init__.py +++ b/bindings/python/google_benchmark/__init__.py @@ -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",