8000 PEP7 · python/cpython@636886e · GitHub
[go: up one dir, main page]

Skip to content

Commit 636886e

Browse files
committed
PEP7
1 parent cb7cea3 commit 636886e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Modules/posixmodule.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15180,7 +15180,8 @@ os__exists_impl(PyObject *module, PyObject *path)
1518015180
case ERROR_INVALID_PARAMETER:
1518115181
if (STAT(_path.wide, &st)) {
1518215182
result = 0;
15183-
} else {
15183+
}
15184+
else {
1518415185
result = 1;
1518515186
}
1518615187
break;

0 commit comments

Comments
 (0)
0