Skip to content
Snippets Groups Projects
Commit 0fe801b5 authored by Colm Talbot's avatar Colm Talbot
Browse files

fix print statement for LogUniform prior

parent ed677f00
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -671,6 +671,10 @@ class LogUniform(PowerLaw):
if self.minimum <= 0:
logger.warning('You specified a uniform-in-log prior with minimum={}'.format(self.minimum))
def __repr__(self):
"""Call to helper method in the super class."""
return Prior._subclass_repr_helper(self)
class Cosine(Prior):
......
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