From d02ec581628da5629cf8a16487988203f6bb12c1 Mon Sep 17 00:00:00 2001 From: Rijnder Wever Date: Fri, 6 Dec 2024 14:04:34 +0100 Subject: [PATCH] misc: clarify comment --- mdto/mdto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mdto/mdto.py b/mdto/mdto.py index 821f033..9bf532f 100755 --- a/mdto/mdto.py +++ b/mdto/mdto.py @@ -905,7 +905,7 @@ def from_file(xmlfile: str) -> Informatieobject | Bestand: # edit the informatie object informatieobject.naam = "Verlenen kapvergunning Flipje's Erf 15 Tiel" - # save it to a new file + # save it to a new file (or override the original, if desired) informatieobject.save("path/to/new/file.xml") ```