Skip to content

Commit 4303f60

Browse files
committed
Formatting
1 parent 296b537 commit 4303f60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,9 +413,9 @@ Expected<llvm::StringRef> PythonString::AsUTF8() const {
413413
#if defined(Py_LIMITED_API) && (Py_LIMITED_API < 0x030a0000)
414414
PyObject *py_bytes = PyUnicode_AsUTF8String(m_py_obj);
415415
if (!py_bytes)
416-
return exception();
416+
return exception();
417417
auto release_py_str =
418-
llvm::make_scope_exit([py_bytes] { Py_DECREF(py_bytes); });
418+
llvm::make_scope_exit([py_bytes] { Py_DECREF(py_bytes); });
419419
Py_ssize_t size = PyBytes_Size(py_bytes);
420420
const char *str = PyBytes_AsString(py_bytes);
421421

0 commit comments

Comments
 (0)