usawa

Signed, immutable accounting.
Log | Files | Refs | Submodules | LICENSE

commit 4430dab62f242fc33f1702faee954f2fa13c4454
parent a20710069bff09ae025dd03ee7bab7d71f6b1b0c
Author: Carlosokumu <carlosokumu254@gmail.com>
Date:   Mon, 13 Jul 2026 23:21:02 +0300

remove unused file

Diffstat:
Ddummy/usawa/storage/xml_utils.py | 19-------------------
1 file changed, 0 insertions(+), 19 deletions(-)

diff --git a/dummy/usawa/storage/xml_utils.py b/dummy/usawa/storage/xml_utils.py @@ -1,19 +0,0 @@ -import logging -from pathlib import Path - -from lxml import etree as ET - -logg = logging.getLogger("usawa.xml_utils") - - -def _write_xml_to_file(xml_string, output_path: str) -> None: - - output_file = Path(output_path) - output_file.parent.mkdir(parents=True, exist_ok=True) - - with open(output_file, "wb") as f: - if isinstance(xml_string, str): - xml_string = xml_string.encode("utf-8") - f.write(xml_string) - - logg.debug("Wrote XML to %s (%d bytes)", output_path, len(xml_string))