We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d1a67e commit 0245848Copy full SHA for 0245848
src/lib/app/PyTwkApp/PyMuSymbolType.cpp
@@ -62,9 +62,6 @@ namespace TwkApp
62
// Helper function for direct cout printing
63
static PyObject* unsafe_mu_print(PyObject* args)
64
{
65
- // const char *prefix = "Unsafe Mu print: ";
66
- const char* prefix = "";
67
-
68
size_t nargs = PyTuple_Size(args);
69
if (nargs >= 1)
70
@@ -73,7 +70,7 @@ namespace TwkApp
73
74
71
const char* str = PyUnicode_AsUTF8(arg);
75
72
if (str)
76
- cout << prefix << str;
+ cout << str;
77
}
78
79
Py_RETURN_NONE;
0 commit comments