Skip to content

Commit 377e29b

Browse files
authored
Merge pull request #53 from JuliaPy/read_csv
Fix read_csv deprecation.
2 parents a7e41e7 + e4b7a2b commit 377e29b

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
@@ -296,7 +296,7 @@ for m in [:read_pickle, :read_csv, :read_html, :read_json, :read_excel, :read_ta
296296
:read_sql_query]
297297
@eval begin
298298
function $m(args...; kwargs...)
299-
method = pandas_raw[$(string(m))]
299+
method = pandas_raw.$(string(m))
300300
result = pycall(method, PyObject, args...; kwargs...)
301301
pandas_wrap(result)
302302
end

0 commit comments

Comments
 (0)