Skip to content
Snippets Groups Projects
Commit 40239924 authored by Bruce Edelman's avatar Bruce Edelman
Browse files

took out f-strings to be python2.7 compatible

parent c569a524
No related branches found
No related tags found
Loading
......@@ -132,7 +132,7 @@ class Kombine(Emcee):
self.sampler.burnin(**self.sampler_burnin_kwargs)
self._set_pos0_for_resume()
self.nburn = self._previous_iterations
logger.info(f"Kombine auto-burnin complete. Removing {self.nburn} samples from chains")
logger.info("Kombine auto-burnin complete. Removing {} samples from chains".format(self.nburn))
tqdm = get_progress_bar()
sampler_function_kwargs = self.sampler_function_kwargs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment