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