From c2914159bc230cdde850ec47d4d63e9098eb6ead Mon Sep 17 00:00:00 2001 From: musvaage <112724366+musvaage@users.noreply.github.com> Date: Fri, 20 Sep 2024 16:51:34 -0500 Subject: [PATCH] typo --- pandas/io/pytables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/io/pytables.py b/pandas/io/pytables.py index be7b8dc6640ba..618254fee9259 100644 --- a/pandas/io/pytables.py +++ b/pandas/io/pytables.py @@ -3580,7 +3580,7 @@ def is_transposed(self) -> bool: @property def data_orientation(self) -> tuple[int, ...]: - """return a tuple of my permuted axes, non_indexable at the front""" + """return a tuple of my permutated axes, non_indexable at the front""" return tuple( itertools.chain( [int(a[0]) for a in self.non_index_axes],