Skip to content

Commit 0a396c7

Browse files
Fix flake8 formatting issue.
1 parent ac58c07 commit 0a396c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: ipyleaflet/leaflet.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -824,11 +824,11 @@ class Heatmap(RasterLayer):
824824
blur = Float(15.0).tag(sync=True, o=True)
825825
colors = ['blue', 'cyan', 'lime', 'yellow', 'red']
826826
values = [0.4, 0.6, 0.7, 0.8, 1.0]
827-
dict ={}
827+
dict = {}
828828
for i in range(len(values)):
829829
dict[values[i]] = colors[i]
830830
vmin = values[0]
831-
vmax = values[len(values)-1]
831+
vmax = values[len(values) - 1]
832832
gradient = Dict(dict).tag(sync=True, o=True)
833833
colormap = LinearColormap(colors, vmin=vmin, vmax=vmax)
834834

0 commit comments

Comments
 (0)