Skip to content

Commit 56edf9b

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 336f841 commit 56edf9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_virtual_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ def __call__(self, first, second, visitor):
270270
# lambda is a workaround, which adds extra frame to the
271271
# current CPython thread. Removing lambda reveals the bug
272272
# [https://github.com/pybind/pybind11/issues/3357]
273-
(lambda : visitor(Data(first.value + second.value)))()
273+
(lambda: visitor(Data(first.value + second.value)))()
274274

275275
class StoreResultVisitor:
276276
def __init__(self):

0 commit comments

Comments
 (0)