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 6163ffc commit 9a33fecCopy full SHA for 9a33fec
pandas/tests/strings/conftest.py
@@ -96,8 +96,10 @@
96
)
97
98
ids, _, _ = zip(*_any_string_method) # use method name as fixture-id
99
-NON_METHODS = {'TYPE_CHECKING', 'Iterable'}
100
-missing_methods = {f for f in dir(StringMethods) if not f.startswith("_")} - set(ids) - NON_METHODS
+NON_METHODS = {"TYPE_CHECKING", "Iterable"}
+missing_methods = (
101
+ {f for f in dir(StringMethods) if not f.startswith("_")} - set(ids) - NON_METHODS
102
+)
103
104
# test that the above list captures all methods of StringMethods
105
assert not missing_methods
0 commit comments