From bf61aafdacb9cd0ed3fba2d66308d075a35e62a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 14 Aug 2018 15:38:25 +0200 Subject: [PATCH] Remove unused variable --- benchmark/submission/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/submission/__init__.py b/benchmark/submission/__init__.py index 1ad8eaa..1b3c297 100644 --- a/benchmark/submission/__init__.py +++ b/benchmark/submission/__init__.py @@ -22,7 +22,7 @@ def submit_benchmark(benchmark_data: dict): bc = BenchmarkClient(mydata_url) # Make sure we have a token; can start the browser to get one. - token = bc.load_auth_token() + bc.load_auth_token() result = bc.submit_benchmark(benchmark_data) print(result)