From ecafe382be3db9df53828a0241167d0ed98bc19d Mon Sep 17 00:00:00 2001 From: mdm Date: Thu, 18 Jul 2024 17:00:04 +0200 Subject: [PATCH 1/2] implement new feat --- test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test.py b/test.py index 4d25e70..e9a199e 100644 --- a/test.py +++ b/test.py @@ -1,2 +1,3 @@ def f(): print("hello") + print("world") -- 2.43.5 From 7136c7c8ed479211356bc45e673f77e89f1d39ab Mon Sep 17 00:00:00 2001 From: mdm Date: Thu, 18 Jul 2024 17:05:39 +0200 Subject: [PATCH 2/2] fix --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index e9a199e..b710b2f 100644 --- a/test.py +++ b/test.py @@ -1,3 +1,3 @@ def f(): print("hello") - print("world") + print("world!") -- 2.43.5