Remove all uses of with

I decided once again that I don't like `with`
This commit is contained in:
SebastianStork 2025-10-08 19:22:41 +02:00
parent e72397e3e1
commit 72d4580779
4 changed files with 25 additions and 18 deletions

View file

@ -53,12 +53,10 @@ in
runtimeInputs = [
pkgs.git
pkgs.gawk
(pkgs.python3.withPackages (
python-pkgs: with python-pkgs; [
dateutil
vobject
]
))
(pkgs.python3.withPackages (python-pkgs: [
python-pkgs.dateutil
python-pkgs.vobject
]))
];
text = ''
username="$1"