Skip to content

Commit

Permalink
Indent changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cdiener committed Jun 8, 2016
1 parent f4cabad commit b364034
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions corda/corda.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
import sys
from os import devnull

TOL = 1e-5 # Tolerance to judge whether a flux is non-zero
UPPER = 1e16 # default upper bound
TOL = 1e-6 # Tolerance to judge whether a flux is non-zero
UPPER = 1e16 # default upper bound

class CORDA(object):

Expand Down Expand Up @@ -205,7 +205,7 @@ def __str__(self):
free_inc = np.sum((old == 0) & (new == 3))
high_inc = np.sum((old == 3) & (new == 3))
out = "build status: reconstruction complete\n" + \
"Inc. reactions: {}/{}\n".format(np.sum(new == 3), len(old)) +\
"Inc. reactions: {}/{}\n".format(np.sum(new == 3), len(old)) + \
" - unclear: {}/{}\n".format(free_inc, old_counts[0]) + \
" - exclude: {}/{}\n".format(noc_inc, old_counts[-1]) + \
" - low and medium: {}/{}\n".format(med_inc, old_counts[1] + \
Expand Down

0 comments on commit b364034

Please sign in to comment.