Skip to content

Commit 13286b5

Browse files
committed
upd style
1 parent fa55365 commit 13286b5

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "PyPlotUtils"
22
uuid = "5384e752-6c47-47b3-86ac-9d091b110b31"
33
authors = ["Alexander Plavin <alexander@plav.in>"]
4-
version = "0.1.26"
4+
version = "0.1.27"
55

66
[deps]
77
Accessors = "7d9f7c33-5ae7-4f3b-8dc6-eff91059b697"

src/PyPlotUtils.jl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,8 @@ function pyplot_style!()
4141
seaborn.set_color_codes()
4242
plt.rc("grid", alpha=0.4)
4343
plt.rc("savefig", bbox="tight", pad_inches=0)
44-
plt.rc("axes", edgecolor="0.5")
45-
plt.rc("legend", edgecolor="0.5")
4644
rcParams = PyDict(matplotlib."rcParams")
47-
for p in ["text.color", "axes.labelcolor", "xtick.color", "ytick.color"]
45+
for p in ["text.color", "axes.labelcolor", "xtick.color", "ytick.color", "axes.edgecolor", "legend.edgecolor"]
4846
rcParams[p] = "black"
4947
end
5048
end

0 commit comments

Comments
 (0)