From 1279258832372ea9b98b2e30113b68d60442d8b5 Mon Sep 17 00:00:00 2001 From: Marco Gorelli Date: Sat, 27 Feb 2021 09:24:07 +0000 Subject: [PATCH] exclude io from inconsistent namespace check --- scripts/check_for_inconsistent_pandas_namespace.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/check_for_inconsistent_pandas_namespace.py b/scripts/check_for_inconsistent_pandas_namespace.py index 87070e819b4a0..84eb8da3bce6c 100644 --- a/scripts/check_for_inconsistent_pandas_namespace.py +++ b/scripts/check_for_inconsistent_pandas_namespace.py @@ -31,6 +31,7 @@ EXCLUDE = { "array", # `import array` and `pd.array` should both be allowed "eval", # built-in, different from `pd.eval` + "io", # built-in, different from `pd.io` "np", # pd.np is deprecated but still tested } Offset = Tuple[int, int]