for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
# coding: utf-8
from schematics.models import Model
from schematics.types import BooleanType
class Morse(Model):
allow_morse_as_text = BooleanType(
default=True,
required=True,
)
show_morse_as_text = BooleanType(
default=False,
block_morse_chat = BooleanType(