-
Notifications
You must be signed in to change notification settings - Fork 7
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
(chore): Clean up AnnDataWrapper
API
#341
base: main
Are you sure you want to change the base?
Conversation
While I agree it may not be the nicest API, without more context/motivation, I don't think there is enough to justify this breaking change, as it will break existing docs/reference materials, Vitessce config generation code in |
@keller-mark This is motivated by #333. We could just keep the non-outward-facing changes so that when the |
# Ignore line too long | ||
E501, | ||
# Ignore invalid escape sequence '\*' | ||
W605, | ||
# Ignore line break before binary operator: Skim down the left edge to understand intent. | ||
W503, | ||
# Ignore continuation line over-indented for visual indent | ||
E127 | ||
# Ignore continuation line under-indented for visual indent | ||
E128 |
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.
Open to other options here, but basically I did two things.
adata_XXX
->base_XXX
since the semantics are a bit more general and I thinkadata
is redundant anywaypath
->elem
since I thinkelem
is a bit nicer andpath
can refer to a sub-URL which is kind of a path, but also not really.This is definitely a breaking change, so I'm going to try to finish up other PRs that are also breaking at the same time, like our python support.