Expected Behavior
When calling ndb.key.urlsafe() you should get a string that can be concatenated with other strings.
Actual Behavior
Currently it return bytes so you need to add .decode() on every call to urlsafe()
Steps to Reproduce the Problem
- On a ndb.Model derived class do: x.key.urlsafe() + ''
- this will generate a runtime error: TypeError: can only concatenate str (not "bytes") to str
Specifications
- Version: 1.0.0
- Platform: Ubuntu 20.04 (wsl2)