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()