From d56946b91521b8864c153263ff39df980148bd5c Mon Sep 17 00:00:00 2001
From: Stephan Seitz <stephan.seitz@fau.de>
Date: Thu, 27 Feb 2020 14:36:52 +0100
Subject: [PATCH] Avoid undefined variable `with_texture` in README

---
 README.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.rst b/README.rst
index f1764cf..963227d 100644
--- a/README.rst
+++ b/README.rst
@@ -85,7 +85,7 @@ Usage
     projection = projector.new_projection_tensor(requires_grad=True)
 
     projection += 1.
-    result = projector.project_backward(projection, use_texture=with_texture)
+    result = projector.project_backward(projection, use_texture=True)
 
     assert projection.requires_grad
     assert result.requires_grad
-- 
GitLab