-
Notifications
You must be signed in to change notification settings - Fork 321
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
Fix numpy deprecation for ragged arrays #3184
Fix numpy deprecation for ragged arrays #3184
Conversation
Codecov Report
@@ Coverage Diff @@
## master #3184 +/- ##
=======================================
Coverage 65.91% 65.92%
=======================================
Files 217 218 +1
Lines 28903 28910 +7
=======================================
+ Hits 19051 19058 +7
Misses 9852 9852 |
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.
looks good!
Perhaps we should think of another location for this method.
qcodes.utils.numpy
? :)
Not a fan of utils but that is probably fine |
I don't think having a file called numpy.py is a good idea so I opted for numpy_utils.py |
Extract method from where this was already fixed and reuse it.
Perhaps we should think of another location for this method.