aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/fr.py
diff options
context:
space:
mode:
authorShivesh Mandalia <shivesh.mandalia@outlook.com>2020-02-28 22:38:40 +0000
committerShivesh Mandalia <shivesh.mandalia@outlook.com>2020-02-28 22:38:40 +0000
commit018cf806e2d852df164b0c795d4e3ffcd122dda0 (patch)
tree08efc6310ae929d60d9c9881b40a0b337da8841d /scripts/fr.py
parent4707f109e2bc35c6e6f6b737607323c0a5931e48 (diff)
downloadGolemFlavor-018cf806e2d852df164b0c795d4e3ffcd122dda0.tar.gz
GolemFlavor-018cf806e2d852df164b0c795d4e3ffcd122dda0.zip
add brackets to all print statements
Diffstat (limited to 'scripts/fr.py')
-rw-r--r--scripts/fr.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/fr.py b/scripts/fr.py
index e32d7d0..25cc1f8 100644
--- a/scripts/fr.py
+++ b/scripts/fr.py
@@ -171,13 +171,13 @@ def main():
outfile = args.datadir + '/{0}/{1}/chains_'.format(
*map(misc_utils.parse_enum, [args.stat_method, args.data])
) + misc_utils.gen_identifier(args)
- print '== {0:<25} = {1}'.format('outfile', outfile)
+ print('== {0:<25} = {1}'.format('outfile', outfile))
if args.run_mcmc:
gf_utils.setup_fitter(args, asimov_paramset)
- print 'asimov_paramset', asimov_paramset
- print 'llh_paramset', llh_paramset
+ print('asimov_paramset', asimov_paramset)
+ print('llh_paramset', llh_paramset)
ln_prob = partial(
llh_utils.ln_prob,
@@ -240,7 +240,7 @@ def main():
labels = labels,
ranges = ranges
)
- print "DONE!"
+ print("DONE!")
main.__doc__ = __doc__