Skip to content

Instantly share code, notes, and snippets.

@MeexReay
Last active March 17, 2024 19:21
Show Gist options
  • Save MeexReay/6313b762f131ee53eba909ec742e3f55 to your computer and use it in GitHub Desktop.
Save MeexReay/6313b762f131ee53eba909ec742e3f55 to your computer and use it in GitHub Desktop.
Python Property Template
def vhat():
doc = "The vhat property."
def fget(self):
return self._vhat
def fset(self, value):
self._vhat = value
def fdel(self):
del self._vhat
return locals()
vhat = property(**vhat())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment