Remove extra semicolon (#3666)

This commit is contained in:
Mattia Basaglia
2022-01-29 23:44:48 +01:00
committed by GitHub
parent 177928840e
commit 07103d6570

View File

@@ -322,7 +322,7 @@ inline bool raise_err(PyObject *exc_type, const char *msg) {
#endif
PyErr_SetString(exc_type, msg);
return false;
};
}
inline void translate_exception(std::exception_ptr p) {
if (!p) {