refactor variable name from object to obj from code review

This commit is contained in:
Alessio Izzo 2023-05-30 14:45:43 +02:00
parent d11e4f530f
commit d685dd9d86
No known key found for this signature in database
GPG Key ID: 2B5983EE2D924936
1 changed files with 1 additions and 1 deletions

View File

@ -1518,7 +1518,7 @@ class TestIssue11028:
return a + 1
def test_gt():
assert (object := 4) > add_one(object)
assert (obj := 4) > add_one(obj)
"""
)
result = pytester.runpytest()