Skip to content

Commit 372a764

Browse files
Benedikt's final nits ;-)
Co-authored-by: Bénédikt Tran <[email protected]>
1 parent cf5c7c8 commit 372a764

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Modules/_datetimemodule.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3272,8 +3272,9 @@ date_today(PyObject *cls, PyObject *Py_UNUSED(dummy))
32723272
return new_date_ex(tm.tm_year + 1900,
32733273
tm.tm_mon + 1,
32743274
tm.tm_mday,
3275-
(PyTypeObject*)cls);
3275+
(PyTypeObject *)cls);
32763276
}
3277+
32773278
PyObject *time = time_time();
32783279
if (time == NULL) {
32793280
return NULL;

0 commit comments

Comments
 (0)