Skip to content

Commit 68f93b5

Browse files
committed
fix code style
Signed-off-by: Manjusaka <me@manjusaka.me>
1 parent 4e13d21 commit 68f93b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_capi/test_opt.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2240,9 +2240,9 @@ class TestObject:
22402240
def test(self, *args, **kwargs):
22412241
return args[0]
22422242

2243-
temp_object = TestObject()
2243+
test_object = TestObject()
22442244

2245-
test_bound_method = TestObject.test.__get__(temp_object)
2245+
test_bound_method = TestObject.test.__get__(test_object)
22462246

22472247

22482248
def global_identity(x):

0 commit comments

Comments
 (0)