Skip to content

Commit 4443bbc

Browse files
Update _interpretersmodule.c
Co-authored-by: sobolevn <[email protected]>
1 parent 2ba24a4 commit 4443bbc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Modules/_interpretersmodule.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -403,8 +403,7 @@ config_from_object(PyObject *configobj, PyInterpreterConfig *config)
403403
}
404404
else if (PyUnicode_Check(configobj)) {
405405
const char *utf8 = PyUnicode_AsUTF8(configobj);
406-
if (utf8 == NULL)
407-
{
406+
if (utf8 == NULL) {
408407
return -1;
409408
}
410409
if (init_named_config(config, utf8) < 0) {

0 commit comments

Comments
 (0)