You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@d-v-b any ideas what's going on with the typing error here? I can't wrap my head around why it's erroring. Perhaps we should just stick an # type: ignore comment on the failing line?
The issue with the dtype mypy error was the variable length string type is not actually a valid ZarrDtype. Since there are existing #type: ignore comments to acocunt for this, I added another one here.
@d-v-b any ideas what's going on with the typing error here? I can't wrap my head around why it's erroring. Perhaps we should just stick an # type: ignore comment on the failing line?
which specific typing error? a basic challenge with VariableLengthUTF8 is that it's conditionally defined: if numpy < 2 is installed, we define 1 version of the class (using the numpy object dtype) and if numpy > 2 is installed, we define a different version of the class (using np.dtypes.StringDType). That can be why mypy singles this type out as unknown
✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 94.47%. Comparing base (2836883) to head (9cc7740). ⚠️ Report is 128 commits behind head on main.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
needs release notesAutomatically applied to PRs which haven't added release notes
3 participants
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Replaces #3109.