From: Jacob Lifshay Date: Fri, 19 Aug 2022 02:31:14 +0000 (-0700) Subject: format code with autopep8 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=effeb28e5848392adddcdad1f6e7a098f2a44c9c;p=nmutil.git format code with autopep8 added empty lines to avoid confusion of which variable each docstring goes with --- diff --git a/src/nmutil/prefix_sum.py b/src/nmutil/prefix_sum.py index 51e28ac..23eca36 100644 --- a/src/nmutil/prefix_sum.py +++ b/src/nmutil/prefix_sum.py @@ -19,10 +19,17 @@ class Op: __slots__ = "out", "lhs", "rhs", "row" def __init__(self, out, lhs, rhs, row): - self.out = out; "index of the item to output to" - self.lhs = lhs; "index of the item the left-hand-side input comes from" - self.rhs = rhs; "index of the item the right-hand-side input comes from" - self.row = row; "row in the prefix-sum diagram" + self.out = out + "index of the item to output to" + + self.lhs = lhs + "index of the item the left-hand-side input comes from" + + self.rhs = rhs + "index of the item the right-hand-side input comes from" + + self.row = row + "row in the prefix-sum diagram" def prefix_sum_ops(item_count, *, work_efficient=False):