<@U6YPB4SJX> when possible, we never want to use `...
# general
h
@average-vr-56795 when possible, we never want to use
string_types
because that allows either bytes or unicode. We always want to err on the side of unicode You would check like this
Copy code
from builtins import str

if isinstance(foo, str):
  pass
👍 2