From 2cc3473957a2875653a3fc5f73b643d55033c1d4 Mon Sep 17 00:00:00 2001 From: Dacheng Xu Date: Thu, 15 Feb 2024 23:39:43 +0800 Subject: [PATCH] `_text_formats` should include txt but not text (#1324) --- straxen/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/straxen/common.py b/straxen/common.py index ad203c295..970d2c398 100644 --- a/straxen/common.py +++ b/straxen/common.py @@ -130,7 +130,7 @@ def pmt_positions(xenon1t=False): _resource_cache: Dict[str, Any] = dict() # Formats for which the original file is text, not binary -_text_formats = ["text", "csv", "json"] +_text_formats = ["txt", "csv", "json"] @export