You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@AlexOugh apparently you can use isinstance(<variable>, basestring) in Python 2.x so it works for both str and unicode types. Unfortunately basestring is not available in Python 3.x.
'isinstance(<variable>, unicode) needs to be added when 'isinstance(<variable>, str) is used in 'conditions.py', 'functions.py' and 'parse.py'
The text was updated successfully, but these errors were encountered: