Skip to content

Commit d6377e8

Browse files
committed
Don't wrap query result
1 parent 3e75258 commit d6377e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Pandas.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ function show(io::IO, df::PandasWrapped)
275275
end
276276

277277
function query(df::DataFrame, s::AbstractString)
278-
pandas_wrap(py"$(df.pyo).query($s)")
278+
pandas_wrap(py"$(df.pyo).query($s)"o)
279279
end
280280

281281
function query(df::DataFrame, e::Expr) # This whole method is a terrible hack

0 commit comments

Comments
 (0)