diff --git a/inventory_provider/routes/data.py b/inventory_provider/routes/data.py
index 97c1488c4166141fa5ea2c2b6da1f0193ea1fd3c..3cc9e58fcda1a6dce3ebfd509204347f369895df 100644
--- a/inventory_provider/routes/data.py
+++ b/inventory_provider/routes/data.py
@@ -35,11 +35,6 @@ def require_accepts_json(f):
 @routes.route("/version", methods=['GET', 'POST'])
 @require_accepts_json
 def version():
-    VERSION = {
-        "api": "0.1",
-        "module": "0.1"
-    }
-
     return Response(
         json.dumps({
             'api': API_VERSION,