From 89cbdb763fa194c5a46909d37c14b496fa46c8b3 Mon Sep 17 00:00:00 2001
From: Brady James Garvin <bgarvin@cse.unl.edu>
Date: Wed, 23 Jan 2019 09:23:02 -0600
Subject: [PATCH] Updated Kv code to use an f-string.

---
 order.kv | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/order.kv b/order.kv
index 52a0e56..bc05b7c 100644
--- a/order.kv
+++ b/order.kv
@@ -4,4 +4,4 @@ BoxLayout:
         id: slider
         on_value: app.change_amount()
     Label:
-        text: str(app.amount)
+        text: f'{app.amount}'
-- 
GitLab