From 54942f7f30c181a7aaa0f4a901734edb763bdeee Mon Sep 17 00:00:00 2001
From: markus holzer <markus.holzer@fau.de>
Date: Thu, 18 Feb 2021 15:48:28 +0100
Subject: [PATCH] Fix flake8

---
 pystencils/cpu/vectorization.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/pystencils/cpu/vectorization.py b/pystencils/cpu/vectorization.py
index 11b5a827c..2f49d44a2 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))
-- 
GitLab