Skip to content

Commit d5c8539

Browse files
committed
style; need to turn some vscode ext
1 parent efe921c commit d5c8539

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

Modules/_csv.c

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1274,21 +1274,21 @@ csv_writerow(PyObject *op, PyObject *seq)
12741274
}
12751275

12761276
switch (dialect->quoting) {
1277-
case QUOTE_NONNUMERIC:
1278-
quoted = !PyNumber_Check(field);
1279-
break;
1280-
case QUOTE_ALL:
1281-
quoted = 1;
1282-
break;
1283-
case QUOTE_STRINGS:
1284-
quoted = !is_none && PyUnicode_Check(field);
1285-
break;
1286-
case QUOTE_NOTNULL:
1287-
quoted = !is_none;
1288-
break;
1289-
default: /* Default QUOTE_MINIMAL or other to minimal behavior */
1290-
quoted = 0;
1291-
break;
1277+
case QUOTE_NONNUMERIC:
1278+
quoted = !PyNumber_Check(field);
1279+
break;
1280+
case QUOTE_ALL:
1281+
quoted = 1;
1282+
break;
1283+
case QUOTE_STRINGS:
1284+
quoted = !is_none && PyUnicode_Check(field);
1285+
break;
1286+
case QUOTE_NOTNULL:
1287+
quoted = !is_none;
1288+
break;
1289+
default: /* Default QUOTE_MINIMAL or other to minimal behavior */
1290+
quoted = 0;
1291+
break;
12921292
}
12931293

12941294
if (is_none) {

0 commit comments

Comments
 (0)