From 8d1ade49fcb2205fb9f20a8dc8803551e6602195 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorbj=C3=B8rn=20Ravn=20Andersen?= Date: Sun, 26 Nov 2023 00:17:54 +0100 Subject: [PATCH] Fixing run_example.py --- run_example.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/run_example.py b/run_example.py index ad7c063..1f76ce0 100644 --- a/run_example.py +++ b/run_example.py @@ -1,6 +1,4 @@ -import os - import autoarchaeologist from autoarchaeologist.generic.bigdigits import BigDigits @@ -22,11 +20,6 @@ ctx.start_examination() - try: - os.mkdir("/tmp/_autoarchaologist") - except FileExistsError: - pass - - ctx.produce_html(html_dir="/tmp/_autoarchaologist") + ctx.produce_html() print("Now point your browser at", ctx.filename_for(ctx).link)