# -*- mode: snippet -*-
# name: __enter__
# key: _enter
# group: Special methods
# --
def __enter__(self):
    $0

    return self
