Skip to content

Commit

Permalink
shut up linter about exit being too complex
Browse files Browse the repository at this point in the history
  • Loading branch information
malb committed Apr 18, 2018
1 parent 88dab0f commit 3c5c09a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fpylll/tools/bkz_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@ def reenter(self, **kwds):
node.data["cputime"] = node.data.get("cputime", 0) + Accumulator(-time.clock(), repr="sum", count=False)
node.data["walltime"] = node.data.get("walltime", 0) + Accumulator(-time.time(), repr="sum", count=False)

def exit(self, **kwds):
def exit(self, **kwds): # noqa, shut up linter about this function being too complex
"""
By default CPU and wall time are recorded. More information is recorded for "enumeration"
and "tour" labels. When the label is a tour then the status is printed if verbosity > 0.
Expand Down

0 comments on commit 3c5c09a

Please sign in to comment.