I'm having trouble setting the sequential attribute for a field to False. My code includes the following.
LABEL = data.Field(sequential=False)
But when I check whether sequential is False or not...
hasattr(LABEL, 'sequential')
I get "True". When I try to set the attribute...
LABEL.sequential = False
hasattr(LABEL, 'sequential')
I still get True!
Any help would be much appreciated!