Trying to execute the example usage code from https://docs.roam.ai/libraries/python-sdk#handling-callbacks I receive this error message:
Traceback (most recent call last):
File "~/.local/lib/python3.8/site-packages/IPython/core/interactiveshell.py", line 3441, in run_code
exec(code_obj, self.user_global_ns, self.user_ns)
File "/tmp/ipykernel_203187/452506982.py", line 1, in <module>
from roam import Client
File "~/.local/lib/python3.8/site-packages/roam/__init__.py", line 1, in <module>
from .runner import(
File "~/.local/lib/python3.8/site-packages/roam/runner.py", line 39
if not USER_ID:
^
IndentationError: unexpected indent
I solved it by editing the file runner.py and correcting the indentation problem. But it would be helpful to correct this problem in the source code.