Skip to content

Commit

Permalink
Update pyemcee.py
Browse files Browse the repository at this point in the history
  • Loading branch information
danehkar committed Nov 3, 2022
1 parent 6ac691b commit 333bd9c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions pyemcee/pyemcee.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
from __future__ import print_function
#print_function for use in Python 2.7 and later

# -*- coding: utf-8 -*-

"""
Expand All @@ -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):
Expand Down Expand Up @@ -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

0 comments on commit 333bd9c

Please sign in to comment.