From b334d4aaa68747bcc8e7bfee1d360cbb7611150e Mon Sep 17 00:00:00 2001 From: Derek Homeier Date: Tue, 24 Sep 2024 13:06:19 +0200 Subject: [PATCH] Try generic Table.read() without encoding --- glue/core/data_factories/astropy_table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glue/core/data_factories/astropy_table.py b/glue/core/data_factories/astropy_table.py index 81874bae2..2f0a2a692 100644 --- a/glue/core/data_factories/astropy_table.py +++ b/glue/core/data_factories/astropy_table.py @@ -54,7 +54,7 @@ def astropy_table_read(*args, **kwargs): pass # If the above didn't work, attempt to read with no specified format - return Table.read(*args, encoding=encoding, **kwargs) + return Table.read(*args, **kwargs) @data_factory(label="Catalog (astropy.table parser)",