diff --git a/pyemcee/pyemcee.py b/pyemcee/pyemcee.py index 1f55af1..2567836 100644 --- a/pyemcee/pyemcee.py +++ b/pyemcee/pyemcee.py @@ -1,3 +1,6 @@ +from __future__ import print_function +#print_function for use in Python 2.7 and later + # -*- coding: utf-8 -*- """ @@ -16,9 +19,6 @@ import scipy.stats as stats import matplotlib.pyplot as plt -#for use in Python 2.7 and later -from __future__ import print_function - __all__ = ["hammer","find_errors"] def initialize(fcn, param, param_err_m, param_err_p, walk_num, output_num, use_gaussian, functargs=None): @@ -470,4 +470,3 @@ def find_errors(output, mcmc_sim, clevel, do_plot=None, image_output_path=None): output_error[j, 0] = 0 output_error[j, 1] = 0 return output_error -