Skip to content

Commit 591c6e4

Browse files
committed
Fix error from lint
1 parent bea99f9 commit 591c6e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/instrumentation.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2559,7 +2559,7 @@ PyObject *_Py_CreateMonitoringObject(void)
25592559
if (err) goto error;
25602560
PyObject *val = PyLong_FromLong(PY_MONITORING_DEBUGGER_ID);
25612561
assert(val != NULL); /* Regression test for PyLong_FromLong which can return
2562-
NULL in the general case. But now it can't return
2562+
NULL in the general case. But now it can't return
25632563
NULL for arguments of small int type. */
25642564
err = PyObject_SetAttrString(mod, "DEBUGGER_ID", val);
25652565
Py_DECREF(val);

0 commit comments

Comments
 (0)