From 866d664873abbeb95adc5aac744cfdec7444281e Mon Sep 17 00:00:00 2001 From: Derrick Chambers Date: Wed, 28 Sep 2022 20:38:55 -0600 Subject: [PATCH] Remove semicolon Remove the semicolon for import statement. --- 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!"