Out[1]: False
Idiomatic Python may say "if not user_id:" and erroneously skip this.
Idiomatic test for `None` is:
if something is None: # ...
Out[1]: False
Idiomatic Python may say "if not user_id:" and erroneously skip this.