# -*- mode: snippet -*-
# name: __gt__
# key: _gt
# group: Special methods
# --
def __gt__(self, other):
    return $0
