From 3ab911f6af57bffb6f0ae3019267340dd5f4eeef Mon Sep 17 00:00:00 2001 From: Nick Todd Date: Wed, 29 Nov 2023 11:41:02 +0000 Subject: [PATCH] #2085: Change output file type --- src/primaite/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/primaite/__init__.py b/src/primaite/__init__.py index 1e5fe925..a143b9b9 100644 --- a/src/primaite/__init__.py +++ b/src/primaite/__init__.py @@ -108,7 +108,7 @@ class _PrimaitePaths: def generate_episode_step_log_file_path(self) -> Path: """The PrimAITE app episode step log file path.""" - return self.app_log_dir_path / "epi_step.json" + return self.app_log_dir_path / "epi_step.log" def __repr__(self) -> str: properties_str = ", ".join([f"{p}='{getattr(self, p)}'" for p in self._get_dirs_properties()])