Skip to content

Commit b364034

Browse files
committed
Indent changes
1 parent f4cabad commit b364034

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

corda/corda.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
import sys
1414
from os import devnull
1515

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

1919
class CORDA(object):
2020

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

0 commit comments

Comments
 (0)