From 13f546fcf59168f67ce8987a6c432e35c16e91bd Mon Sep 17 00:00:00 2001 From: rowan Date: Mon, 6 Oct 2025 17:14:52 -0400 Subject: [PATCH] c# moment --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7c8b718..5f06743 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,6 @@ pg = Puppygirl( # parsed using the above config parsed = pg.fetch("index.html") -using open("dist/index.html", "w") as f: +with open("dist/index.html", "w") as f: f.write(parsed.prettify()) # parsed is a beautifulsoup4 object ```