diff options
| author | Shivesh Mandalia <shivesh.mandalia@outlook.com> | 2020-02-28 22:38:40 +0000 |
|---|---|---|
| committer | Shivesh Mandalia <shivesh.mandalia@outlook.com> | 2020-02-28 22:38:40 +0000 |
| commit | 018cf806e2d852df164b0c795d4e3ffcd122dda0 (patch) | |
| tree | 08efc6310ae929d60d9c9881b40a0b337da8841d /scripts/contour.py | |
| parent | 4707f109e2bc35c6e6f6b737607323c0a5931e48 (diff) | |
| download | GolemFlavor-018cf806e2d852df164b0c795d4e3ffcd122dda0.tar.gz GolemFlavor-018cf806e2d852df164b0c795d4e3ffcd122dda0.zip | |
add brackets to all print statements
Diffstat (limited to 'scripts/contour.py')
| -rw-r--r-- | scripts/contour.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/contour.py b/scripts/contour.py index 6f08617..cbb6c87 100644 --- a/scripts/contour.py +++ b/scripts/contour.py @@ -194,10 +194,10 @@ def main(): prefix = '' outfile = args.datadir + '/contour' + prefix + gen_identifier(args) - print '== {0:<25} = {1}'.format('outfile', outfile) + print('== {0:<25} = {1}'.format('outfile', outfile)) - print 'asimov_paramset', asimov_paramset - print 'hypo_paramset', hypo_paramset + print('asimov_paramset', asimov_paramset) + print('hypo_paramset', hypo_paramset) if args.run_mcmc: gf_utils.setup_fitter(args, asimov_paramset) @@ -250,7 +250,7 @@ def main(): labels = labels ) - print "DONE!" + print("DONE!") main.__doc__ = __doc__ |
