Skip to content
Snippets Groups Projects
Commit 8f20bc0c authored by MoritzThomasHuebner's avatar MoritzThomasHuebner
Browse files

Removed an unused variable with `_`

parent 161321f7
No related branches found
No related tags found
1 merge request!106Warnings cleanup
......@@ -799,7 +799,7 @@ class Emcee(Sampler):
else:
logger.debug("Generating initial walker positions from prior")
pos0 = [self.get_random_draw_from_prior()
for i in range(self.nwalkers)]
for _ in range(self.nwalkers)]
for result in tqdm(
sampler.sample(pos0, iterations=self.nsteps), total=self.nsteps):
......
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