Add snippet(s)

This commit is contained in:
Charlotte Van Petegem 2023-02-25 13:03:46 +01:00
parent 8463db8e03
commit 52d14b95b1
No known key found for this signature in database
GPG key ID: 019E764B7184435A

View file

@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# name: new function
# key: def
# --
def $1(${2:*args, **kwargs}):
"""
$3
"""
${0:pass}