From fb6af3aa1c8d76442f04a2c4c189fdc92182e4a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20W=C3=BCrger?= <44372393+koerper@users.noreply.github.com> Date: Wed, 27 Mar 2024 14:53:54 +0000 Subject: [PATCH] Clean up repository --- hello.py | 2 -- hello_test.py | 5 ----- 2 files changed, 7 deletions(-) delete mode 100644 hello.py delete mode 100644 hello_test.py diff --git a/hello.py b/hello.py deleted file mode 100644 index a025bbf..0000000 --- a/hello.py +++ /dev/null @@ -1,2 +0,0 @@ -def hello_world(): - return "Hello!" diff --git a/hello_test.py b/hello_test.py deleted file mode 100644 index 708a061..0000000 --- a/hello_test.py +++ /dev/null @@ -1,5 +0,0 @@ -import hello - - -def test_hello(): - assert hello.hello_world() == "Hello World!"