Skip to content

Instantly share code, notes, and snippets.

@marcosgabarda
Last active May 23, 2019 16:25
Show Gist options
  • Save marcosgabarda/b432df9b4fe73b52f981260627e03028 to your computer and use it in GitHub Desktop.
Save marcosgabarda/b432df9b4fe73b52f981260627e03028 to your computer and use it in GitHub Desktop.
import random
from django import forms
class ShrugForm(forms.Form):
def clean(self):
super().clean()
if random.choice([True, False]):
raise forms.ValidationError("¯\\_(ツ)_/¯")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment