From 1950e83933fc395f2f7e89f310e340db3d0f5dbc Mon Sep 17 00:00:00 2001 From: Ludovico Bianchi Date: Fri, 19 Apr 2024 12:23:53 -0500 Subject: [PATCH 1/2] Add yet_another_function() --- src/sample/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/sample/__init__.py b/src/sample/__init__.py index 9d91c65..ed7621f 100644 --- a/src/sample/__init__.py +++ b/src/sample/__init__.py @@ -17,3 +17,10 @@ def some_other_function(): b = 2 c = 4 return a, b, c + + +def yet_another_function(): + a = 1 + b = 2 + c = 4 + return a, b, c \ No newline at end of file From 9002c80c4d10b61671d4cd547a1362ebfabbf860 Mon Sep 17 00:00:00 2001 From: Ludovico Bianchi Date: Fri, 19 Apr 2024 14:53:18 -0500 Subject: [PATCH 2/2] Add a couple more lines --- src/sample/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/sample/__init__.py b/src/sample/__init__.py index ed7621f..787e688 100644 --- a/src/sample/__init__.py +++ b/src/sample/__init__.py @@ -23,4 +23,6 @@ def yet_another_function(): a = 1 b = 2 c = 4 + e = 8 + f = 16 return a, b, c \ No newline at end of file