From 28d88e33f9f4544fd5b752bc10416ad5a3e97873 Mon Sep 17 00:00:00 2001 From: Evaldas Latoskinas Date: Thu, 15 Jul 2021 01:22:44 +0200 Subject: [PATCH] Add multi-var function edge case sample file --- python/sample_files/func_multi_var.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 python/sample_files/func_multi_var.py diff --git a/python/sample_files/func_multi_var.py b/python/sample_files/func_multi_var.py new file mode 100644 index 0000000..f8404be --- /dev/null +++ b/python/sample_files/func_multi_var.py @@ -0,0 +1,7 @@ +def fun(a): + if a: + x = 1 + else: + x = 3 + + return x \ No newline at end of file