From cf70289d1eb9c1fc95c44943947b87d771750e86 Mon Sep 17 00:00:00 2001 From: CyrilFerlicot Date: Wed, 11 Dec 2024 16:31:11 +0100 Subject: [PATCH] [test project] fix test by removing a line return that got added --- resources/examples/project1/src/root/__init__.py | 2 +- .../src/root/subpackage1/subsubpackage1/__init__.py | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/resources/examples/project1/src/root/__init__.py b/resources/examples/project1/src/root/__init__.py index 4253956..eac2ce8 100644 --- a/resources/examples/project1/src/root/__init__.py +++ b/resources/examples/project1/src/root/__init__.py @@ -12,4 +12,4 @@ def function_with_common_name(): class Animal(AbstractAnimal): def eat(self): - print("I can eat") + print("I can eat") \ No newline at end of file diff --git a/resources/examples/project1/src/root/subpackage1/subsubpackage1/__init__.py b/resources/examples/project1/src/root/subpackage1/subsubpackage1/__init__.py index 62bd3f6..8548361 100644 --- a/resources/examples/project1/src/root/subpackage1/subsubpackage1/__init__.py +++ b/resources/examples/project1/src/root/subpackage1/subsubpackage1/__init__.py @@ -17,14 +17,17 @@ def calculate_area(self): def return2(): return 2 + print(return2) + class ClassWithFunctionReference: functionRefCVar = return2 def method_with_function_ref(self): return return2 + def function_with_function_ref(): return return2 @@ -32,4 +35,5 @@ def function_with_function_ref(): def function_with_lambda_with_function_ref(): return lambda: return2 -function_with_lambda_with_function_ref()() \ No newline at end of file + +function_with_lambda_with_function_ref()()