From 2d52a66074df2b3b97adcf5620d15565f58d5727 Mon Sep 17 00:00:00 2001 From: daretohack Date: Mon, 21 Jun 2021 16:04:30 +0530 Subject: [PATCH] Made the code more pythonic --- hello_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello_test.py b/hello_test.py index 50e5608..1e6a9e6 100644 --- a/hello_test.py +++ b/hello_test.py @@ -1,4 +1,4 @@ -import hello; +import hello def test_hello(): assert hello.hello_world() == "Hello World!"