update packages

This commit is contained in:
2025-03-11 21:14:26 +01:00
parent 45d49daef0
commit 14dcaaddde
440 changed files with 13229 additions and 8718 deletions

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# name: with-open
# key: wo
# group : control structure
# contributor: Quazgar
# --
with open(${1:"filename"}${2:, encoding="${3:utf-8}"}${4:, mode="${5:w}"}) as ${6:myfile}:
$0