From acc9811a1552f3edcace8b6ba0bef58908bc1ed5 Mon Sep 17 00:00:00 2001 From: Christoph Knote Date: Thu, 15 Apr 2021 13:56:54 +0200 Subject: [PATCH] Updates --- icartt/dataset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icartt/dataset.py b/icartt/dataset.py index 10461e4..51b14ab 100644 --- a/icartt/dataset.py +++ b/icartt/dataset.py @@ -186,7 +186,7 @@ class Dataset: ''' Names of variables (independent and dependent) ''' - return [ x.name for x in self.VARS ] + return [ x for x in self.VARS.keys() ] @property def times(self): ''' -- GitLab