-
Notifications
You must be signed in to change notification settings - Fork 19
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
Project keys must be strings #362
Comments
augustebaum
pushed a commit
that referenced
this issue
Sep 19, 2024
augustebaum
pushed a commit
that referenced
this issue
Sep 19, 2024
augustebaum
pushed a commit
that referenced
this issue
Sep 20, 2024
- Add error type `KeyTypeError` Closes #362
augustebaum
pushed a commit
that referenced
this issue
Sep 23, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently
project.put(1, "hello")
works, as well asproject.put(set(), "hello")
. However, then the serialization of the project for displaying in the frontend fails, becauseset
is unhashable.We should raise an error when the key is not a string.
The text was updated successfully, but these errors were encountered: