8 lines
135 B
Text
8 lines
135 B
Text
![]() |
# -*- mode: snippet -*-
|
||
|
# name: __get__
|
||
|
# key: __get__
|
||
|
# group: Special methods
|
||
|
# --
|
||
|
def __get__(self, instance, owner):
|
||
|
return $0
|