Explorar o código

Comply to 80 char.

Jayke Meijer %!s(int64=14) %!d(string=hai) anos
pai
achega
0658f9c54b
Modificáronse 1 ficheiros con 3 adicións e 1 borrados
  1. 3 1
      src/optimize/advanced.py

+ 3 - 1
src/optimize/advanced.py

@@ -282,7 +282,9 @@ def algebraic_transformations(block):
 
                 shift_amount = log(s[1], 2)
                 if shift_amount.is_integer():
-                    new_command = S('command', 'sll', next[0], s[0], int(shift_amount))
+                    new_command = S('command', 'sll', \
+                                    next[0], s[0], \
+                                    int(shift_amount))
                     block.replace(2, [new_command])
                     changed = True