diff --git a/pkg/Hello.py b/pkg/Hello.py index c822a72..36af23f 100644 --- a/pkg/Hello.py +++ b/pkg/Hello.py @@ -1,11 +1,5 @@ class Hello: @staticmethod def hello_world() -> str: - """ hello_world - This method should return the string "Hello, World!". - Args: - None - Returns: - str: "Hello, World!" - """ - return None + + return "Hello, World!"