From 4805c75d885916161e9d5224bf7b56f5ded91be7 Mon Sep 17 00:00:00 2001 From: Oscar Levin Date: Tue, 16 Jul 2024 21:14:13 -0600 Subject: [PATCH] Remove accidental debug message --- pretext/project/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pretext/project/__init__.py b/pretext/project/__init__.py index f1051ea5..7ed33fbe 100644 --- a/pretext/project/__init__.py +++ b/pretext/project/__init__.py @@ -473,8 +473,6 @@ def save_asset_table(self, asset_table: pt.AssetTable) -> None: Saves the asset_table to a pickle file in the generated assets directory based on the target name. """ - self.ensure_asset_directories() - log.warning("Saving asset table") with open(self.generated_dir_abspath() / f".{self.name}_assets.pkl", "wb") as f: pickle.dump(asset_table, f)