diff --git a/pystencils/cpu/vectorization.py b/pystencils/cpu/vectorization.py
index 11b5a827ceb2739ecc42ae7421ecb263086e065c..2f49d44a2b848d85bed7fe6ac896bc730351c8c2 100644
--- a/pystencils/cpu/vectorization.py
+++ b/pystencils/cpu/vectorization.py
@@ -152,8 +152,7 @@ def vectorize_inner_loops_and_adapt_load_stores(ast_node, vector_width, assume_a
         vector_int_width = ast_node.instruction_set['intwidth']
         vector_loop_counter = cast_func((loop_counter_symbol,) * vector_int_width,
                                         VectorType(loop_counter_symbol.dtype, vector_int_width)) + \
-                              cast_func(tuple(range(vector_int_width)),
-                                        VectorType(loop_counter_symbol.dtype, vector_int_width))
+            cast_func(tuple(range(vector_int_width)), VectorType(loop_counter_symbol.dtype, vector_int_width))
 
         fast_subs(loop_node, {loop_counter_symbol: vector_loop_counter},
                   skip=lambda e: isinstance(e, ast.ResolvedFieldAccess) or isinstance(e, vector_memory_access))