Description: fix build with python 3.11
Origin: upstream, https://github.com/Sigil-Ebook/Sigil/commit/c89fb7cee02e5b5dd82fa7a605d6505817bdad23
Last-Update: 2022-12-05

--- a/src/EmbedPython/EmbeddedPython.cpp
+++ b/src/EmbedPython/EmbeddedPython.cpp
@@ -480,7 +480,7 @@
 
         if (kind == PyUnicode_1BYTE_KIND) {
             // latin 1 according to PEP 393
-            res = QVariant(QString::fromLatin1(reinterpret_cast<const char *>PyUnicode_1BYTE_DATA(po), -1));
+            res = QVariant(QString::fromLatin1(reinterpret_cast<const char *>(PyUnicode_1BYTE_DATA(po)), -1));
 
         } else if (kind == PyUnicode_2BYTE_KIND) {
 #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
