(data, other)
| 426 | |
| 427 | |
| 428 | def fillna(data, other): |
| 429 | # we need to pass data first so pint has a chance of returning the |
| 430 | # correct unit |
| 431 | # TODO: revert after https://github.com/hgrecco/pint/issues/1019 is fixed |
| 432 | return where(notnull(data), data, other) |
| 433 | |
| 434 | |
| 435 | def logical_not(data): |
no test coverage detected
searching dependent graphs…