Skip to content

Commit

Permalink
Merge pull request #34 from ancorso/main
Browse files Browse the repository at this point in the history
Replaced erroneous call to "close" with "finish"
  • Loading branch information
avik-pal authored Mar 27, 2024
2 parents ff3cd10 + fabf9a0 commit 4c7b697
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.jl
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ end
Terminate the current run. For more details checkout `wandb.finish` (or
`? Wandb.wandb.finish` in the Julia REPL).
"""
Base.close(lg::WandbLogger; kwargs...) = lg.wrun.close(; kwargs...)
Base.close(lg::WandbLogger; kwargs...) = lg.wrun.finish(; kwargs...)

"""
save(lg::WandbLogger, args...; kwargs...)
Expand Down

0 comments on commit 4c7b697

Please sign in to comment.