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 023988d commit cb091a7Copy full SHA for cb091a7
pandas/core/computation/pytables.py
@@ -274,7 +274,9 @@ def stringify(value):
274
# string quoting
275
return TermValue(conv_val, stringify(conv_val), "string")
276
else:
277
- raise TypeError(f"Cannot compare {conv_val} of type {type(conv_val)} to {kind} column")
+ raise TypeError(
278
+ f"Cannot compare {conv_val} of type {type(conv_val)} to {kind} column"
279
+ )
280
281
def convert_values(self) -> None:
282
pass
0 commit comments