Skip to content

Commit c4776b0

Browse files
committed
Remove unused import
1 parent bf61512 commit c4776b0

File tree

2 files changed

+42
-2
lines changed

2 files changed

+42
-2
lines changed

Manifest.toml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# This file is machine-generated - editing it directly is not advised
2+
3+
[[ColorTypes]]
4+
deps = ["FixedPointNumbers", "Random"]
5+
git-tree-sha1 = "024fe24d83e4a5bf5fc80501a314ce0d1aa35597"
6+
uuid = "3da002f7-5984-5a60-b8a6-cbb66c0b333f"
7+
version = "0.11.0"
8+
9+
[[FixedPointNumbers]]
10+
deps = ["Statistics"]
11+
git-tree-sha1 = "335bfdceacc84c5cdf16aadc768aa5ddfc5383cc"
12+
uuid = "53c48c17-4a7d-5ca2-90c5-79b7896eea93"
13+
version = "0.8.4"
14+
15+
[[Libdl]]
16+
uuid = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
17+
18+
[[LinearAlgebra]]
19+
deps = ["Libdl"]
20+
uuid = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
21+
22+
[[Random]]
23+
deps = ["Serialization"]
24+
uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
25+
26+
[[Reexport]]
27+
git-tree-sha1 = "5f6c21241f0f655da3952fd60aa18477cf96c220"
28+
uuid = "189a3867-3050-52da-a836-e630ba90ab69"
29+
version = "1.1.0"
30+
31+
[[Serialization]]
32+
uuid = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
33+
34+
[[SparseArrays]]
35+
deps = ["LinearAlgebra", "Random"]
36+
uuid = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
37+
38+
[[Statistics]]
39+
deps = ["LinearAlgebra", "SparseArrays"]
40+
uuid = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"

src/Colors.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Base.@deprecate_binding RGB1 XRGB
88
Base.@deprecate_binding RGB4 RGBX
99

1010

11-
import Base: ==, +, -, *, /
12-
import Base: convert, eltype, isless, range, show, showable, typemin, typemax
11+
import Base: +, -, *, / # for XYZ and LMS arithmetic
12+
import Base: convert, parse, range, show, showable
1313

1414
# Additional exports, not exported by ColorTypes
1515
export weighted_color_mean,

0 commit comments

Comments
 (0)