Skip to content

Commit

Permalink
Merge pull request #83 from JuliaEarth/auto-juliaformatter-pr
Browse files Browse the repository at this point in the history
[AUTO] JuliaFormatter.jl run
  • Loading branch information
juliohm authored Dec 8, 2023
2 parents 98ef891 + 256c67b commit 4551b18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/dataframes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ function _unionvcat(tab1, tab2, nrows1, nrows2)
elseif !isnothing(tab1)
cols = Tables.columns(tab1)
names = Tables.columnnames(cols)

missings = fill(missing, nrows2)
columns = map(names) do name
column = Tables.getcolumn(cols, name)
Expand All @@ -217,7 +217,7 @@ function _unionvcat(tab1, tab2, nrows1, nrows2)
elseif !isnothing(tab2)
cols = Tables.columns(tab2)
names = Tables.columnnames(cols)

missings = fill(missing, nrows1)
columns = map(names) do name
column = Tables.getcolumn(cols, name)
Expand Down

0 comments on commit 4551b18

Please sign in to comment.