From 6ba0aff3a4e1c5488e9cac5a2891c5afdaa4d598 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Wed, 14 Aug 2024 18:30:38 +0800 Subject: [PATCH] ... --- scripts/run_tests.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/run_tests.py b/scripts/run_tests.py index 63f01f73..83f323de 100644 --- a/scripts/run_tests.py +++ b/scripts/run_tests.py @@ -56,12 +56,9 @@ def add(a, b): class A: def __init__(self, x): self.x = x - def get(self): return self.x - - print('ans_1:', add(1, 2)) print('ans_2:', A('abc').get()) exit()