-
Notifications
You must be signed in to change notification settings - Fork 164
Post Processor Report Refactoring #1017
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
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1017 +/- ##
==========================================
- Coverage 80.87% 80.69% -0.19%
==========================================
Files 131 132 +1
Lines 39074 39610 +536
==========================================
+ Hits 31602 31963 +361
- Misses 7472 7647 +175 |
pyaedt/modules/PostProcessor.py
Outdated
} | ||
|
||
|
||
class REPORTS(object): |
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.
Should reserve all CAPS for python constants and not classes.
pyaedt/modules/PostProcessor.py
Outdated
rep = rt.Standard(self._post_app, self._post_app._app.design_solutions.report_type, setup_name) | ||
rep.expressions = expressions | ||
return rep | ||
return None |
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.
This is redundant. None
is returned by default.
return None |
No description provided.