From b4d221ca836b9e3df1bf9c232b387332a920656f Mon Sep 17 00:00:00 2001 From: Michelle Tran Date: Tue, 14 May 2024 20:14:55 -0400 Subject: [PATCH] fix spacing --- func.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/func.py b/func.py index ceba274..3c814e9 100644 --- a/func.py +++ b/func.py @@ -2,8 +2,11 @@ def func(): """"Test function to check if coverage is configured properly.""" return True + def untested(): return "This is untested code" -def blah_test_this(): - return "blue blue" + +def more_untested(): + return "hello world" +