# -*- mode: snippet -*-
# name: __getattribute__
# key: _getattribute
# group: Special methods
# --
def __getattribute__(self, name):
    return $0
