# -*- mode: snippet -*-
# name: __missing__
# key: _missing
# group: Special methods
# --
def __missing__(self):
    return $0
