I’m trying to read data in from a json file and ensure that it is string type. In the official docs the conversion would be done like so;
https://docs.micropython.org/en/latest/genrst/builtin_types.html#str
print(str(b'abc', encoding='utf8'))
On the cam that code results in;
“NotImplementedError: keyword argument(s) not yet implemented - use normal args instead”