fix code formatting
diff --git a/Python/Python-ast.c b/Python/Python-ast.c
index 6b3424a..9a93bf3 100644
--- a/Python/Python-ast.c
+++ b/Python/Python-ast.c
@@ -527,8 +527,9 @@
 {
     int i, result;
     PyObject *s, *l = PyTuple_New(num_fields);
-    if (!l) return 0;
-    for(i = 0; i < num_fields; i++) {
+    if (!l)
+        return 0;
+    for (i = 0; i < num_fields; i++) {
         s = PyString_FromString(attrs[i]);
         if (!s) {
             Py_DECREF(l);