Skip to content

Commit

Permalink
fixing dict sort bug
Browse files Browse the repository at this point in the history
  • Loading branch information
claytonpbarrows committed Oct 2, 2024
1 parent cd927a1 commit 0e999c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PowerSystemsMaps"
uuid = "e146f72c-d4f8-45d3-b3ca-12a16cb68a38"
authors = ["cbarrows <[email protected]>"]
version = "0.2.1"
version = "0.2.2"

[deps]
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581"
Expand Down
2 changes: 1 addition & 1 deletion src/plot_network.jl
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ function make_graph(sys::PowerSystems.System; kwargs...)
pin = ip,
)
else
network = collect(values(ip))
network = [ip[k] for k in 1:nv(g)]
end

set_prop!(g, :x, first.(network))
Expand Down

0 comments on commit 0e999c4

Please sign in to comment.