From 843673f29e06bea5dfd27041939e64b033233a25 Mon Sep 17 00:00:00 2001 From: Michael Buch Date: Mon, 29 Jul 2024 08:53:18 +0100 Subject: [PATCH] fixup! python format --- lldb/examples/synthetic/libcxx.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lldb/examples/synthetic/libcxx.py b/lldb/examples/synthetic/libcxx.py index 060ff901008497..b078a4eb2f6394 100644 --- a/lldb/examples/synthetic/libcxx.py +++ b/lldb/examples/synthetic/libcxx.py @@ -764,7 +764,9 @@ def update(self): map_.GetChildMemberWithName("__end_cap_") ) else: - map_endcap = map_.GetChildMemberWithName("__end_cap_").GetValueAsUnsigned(0) + map_endcap = map_.GetChildMemberWithName( + "__end_cap_" + ).GetValueAsUnsigned(0) # check consistency if not map_first <= map_begin <= map_end <= map_endcap: