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