-
Notifications
You must be signed in to change notification settings - Fork 633
Specific Exceptions: Adapting pcan interface #1152
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 @@
## develop #1152 +/- ##
===========================================
+ Coverage 70.86% 70.88% +0.01%
===========================================
Files 79 79
Lines 7765 7770 +5
===========================================
+ Hits 5503 5508 +5
Misses 2262 2262 |
""" | ||
if self.status() in PCAN_DICT_STATUS: | ||
try: |
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 change prevents a hypothetical error if self.status()
changes between lines.
@Mergifyio rebase |
✅ Branch has been successfully rebased |
febcc80
to
1a995e7
Compare
What a weird failure:
|
|
@Mergifyio rebase |
Part of #1046. Also partly cleans up the docstrings in `basic.py` and uses some subtests in `test_pcan.py` (the parameter `name` was else unused in most parameterized tests).
✅ Branch has been successfully rebased |
1a995e7
to
02b288d
Compare
@hardbyte Do you think you'll have time to review the open RPs for the 4.0.0 Release in the near future? There are also a few PRs that are approved by others and are waiting to be merged. It would be nice to include them into the next release (but the main blocker are the PRs around Specific Exceptions). |
* Specific Exceptions: Adapting pcan interface Part of hardbyte#1046. Also partly cleans up the docstrings in `basic.py` and uses some subtests in `test_pcan.py` (the parameter `name` was else unused in most parameterized tests). * Run black formatter * Remove wildcard import; move some dicts/lists to basic.py
Part of #1046.
Also partly cleans up the docstrings in
basic.py
and uses some subtests intest_pcan.py
(the parametername
was else unused in most parameterized tests).