Skip to content

Commit

Permalink
[test project] fix test by removing a line return that got added
Browse files Browse the repository at this point in the history
  • Loading branch information
jecisc committed Dec 11, 2024
1 parent 8f12505 commit cf70289
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/examples/project1/src/root/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ def function_with_common_name():
class Animal(AbstractAnimal):

def eat(self):
print("I can eat")
print("I can eat")
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,23 @@ 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


def function_with_lambda_with_function_ref():
return lambda: return2

function_with_lambda_with_function_ref()()

function_with_lambda_with_function_ref()()

0 comments on commit cf70289

Please sign in to comment.