Skip to content

Commit 527ec1c

Browse files
committed
Fix indentation
1 parent 1b1ccaf commit 527ec1c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

getdents/_getdents.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,16 +51,16 @@ getdents_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
5151

5252
if (!(fcntl(fd, F_GETFL) & O_DIRECTORY)) {
5353
PyErr_SetString(
54-
PyExc_NotADirectoryError,
55-
"fd must be opened with O_DIRECTORY flag"
54+
PyExc_NotADirectoryError,
55+
"fd must be opened with O_DIRECTORY flag"
5656
);
5757
return NULL;
5858
}
5959

6060
if (buff_size < MIN_GETDENTS_BUFF_SIZE) {
6161
PyErr_SetString(
62-
PyExc_ValueError,
63-
"buff_size is too small"
62+
PyExc_ValueError,
63+
"buff_size is too small"
6464
);
6565
return NULL;
6666
}

0 commit comments

Comments
 (0)