From 5121d368936d3d1f2611636e9183c060be7f3bf5 Mon Sep 17 00:00:00 2001
From: Fudgerboy <91767657+Fudgerboy@users.noreply.github.com>
Date: Sat, 4 May 2024 23:31:54 +0000
Subject: Sat, May 4, 2024, 4:31 PM -07:00

---
 wk6/pset/sentimental-readability/readability.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'wk6/pset/sentimental-readability/readability.py')

diff --git a/wk6/pset/sentimental-readability/readability.py b/wk6/pset/sentimental-readability/readability.py
index 299dbeb..2c1fc5b 100644
--- a/wk6/pset/sentimental-readability/readability.py
+++ b/wk6/pset/sentimental-readability/readability.py
@@ -2,9 +2,9 @@ from cs50 import get_string
 
 text = get_string("Text: ")
 
-s = 0.0 # sentences
-w = 1.0 # words
-l = 0.0 # letters
+s = 0.0  # sentences
+w = 1.0  # words
+l = 0.0  # letters
 c = ''
 
 for i in range(len(text)):
-- 
cgit v1.2.3