-
Notifications
You must be signed in to change notification settings - Fork 14
Miscelaneous bugfixes (matplotlib & futuretests) #1809
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
09d83e9
bc08092
e4d1f1e
1c69689
f68a74b
6c936f7
154a6dd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -44,11 +44,10 @@ def check_pdf_is_montecarlo(ns, **kwargs): | |||||||||||||
|
|
||||||||||||||
|
|
||||||||||||||
| @make_argcheck | ||||||||||||||
| def check_pdf_is_montecarlo_or_symmhessian(ns, **kwargs): | ||||||||||||||
| pdf = ns['pdf'] | ||||||||||||||
| def check_pdf_is_montecarlo_or_symmhessian(pdf, **kwargs): | ||||||||||||||
| etype = pdf.error_type | ||||||||||||||
|
Radonirinaunimi marked this conversation as resolved.
Comment on lines
+47
to
48
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In reportengine it seems why should we use
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure, I am ok with that.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. But what's the reason for using one over the other?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure tbh, I was suggesting it because the other functions like I think you are right though that I am thinking that we could change the others to be |
||||||||||||||
| check( | ||||||||||||||
| etype in {'replicas', 'symhessian'}, | ||||||||||||||
| etype in {'replicas', 'symmhessian'}, | ||||||||||||||
| f"Error type of PDF {pdf} must be either 'replicas' or 'symmhessian' and not {etype}", | ||||||||||||||
| ) | ||||||||||||||
|
|
||||||||||||||
|
|
||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.