Skip to content

Commit

Permalink
Fixed more flake8 formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
alphillips-lab authored and huettenhain committed Oct 7, 2024
1 parent e7cc7d8 commit a6483ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions refinery/units/formats/a3x.py
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,7 @@ def _refactor_state():
x ^= t[i + 397]
t[i] = x

for i in range(0xe3, 0x18c+0xe3):
for i in range(0xe3, 0x18c + 0xe3):
x = t[i] ^ t[i + 1]
x &= 0x7FFFFFFE
x ^= t[i]
Expand All @@ -739,9 +739,9 @@ def _refactor_state():
t[i] = x

x = t[0]
y = t[0x18c+0xe3] ^ x
y = t[0x18c + 0xe3] ^ x
y &= 0x7FFFFFFE
y ^= t[0x18c+0xe3]
y ^= t[0x18c + 0xe3]
y >>= 1
if (x % 2 == 1):
x = 0x9908B0DF
Expand Down

0 comments on commit a6483ac

Please sign in to comment.