We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7216c7 commit 6163ffcCopy full SHA for 6163ffc
pandas/tests/strings/conftest.py
@@ -96,7 +96,8 @@
96
)
97
98
ids, _, _ = zip(*_any_string_method) # use method name as fixture-id
99
-missing_methods = {f for f in dir(StringMethods) if not f.startswith("_")} - set(ids)
+NON_METHODS = {'TYPE_CHECKING', 'Iterable'}
100
+missing_methods = {f for f in dir(StringMethods) if not f.startswith("_")} - set(ids) - NON_METHODS
101
102
# test that the above list captures all methods of StringMethods
103
assert not missing_methods
0 commit comments