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
classCommaSeparatedIntegerField(forms.Field):
defto_python(self, value: Any|None) ->list[int]: # Any | None from super -> do not overrideifvalueisNoneornotvalue.strip():
return []
return [int(item.strip()) foriteminvalue.split(",")]
Broke on this input: invalid literal for int() with base 10: 'if(now()=sysdate()'
Very funny.
The text was updated successfully, but these errors were encountered:
Last line of this code:
Broke on this input:
invalid literal for int() with base 10: 'if(now()=sysdate()'
Very funny.
The text was updated successfully, but these errors were encountered: