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
I have several sets of autocomplete csv's that I would like to start showing suggestions on the first letter. This was not a problem until recently. Anyone know what I would need to change for this to go back to the way it was. Please and thank you.
I tried:
Changing:
if not name.startswith("<") and len(name.rstrip()) > 2:
back to
if not name.startswith("<") and len(name) > 2:
This did not look to have any effect.
The text was updated successfully, but these errors were encountered:
I have several sets of autocomplete csv's that I would like to start showing suggestions on the first letter. This was not a problem until recently. Anyone know what I would need to change for this to go back to the way it was. Please and thank you.
I tried:
Changing:
back to
This did not look to have any effect.
The text was updated successfully, but these errors were encountered: