Skip to content

Commit 1a44663

Browse files
committed
remove redundant comment
1 parent c9a4117 commit 1a44663

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/pygpsclient/map_frame.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,9 +185,7 @@ def _draw_static_map(self, lat: float, lon: float):
185185
self._lastmaptype = "world"
186186
w, h = self.width, self.height
187187
self._can_mapview.delete("all")
188-
self._img = ImageTk.PhotoImage(
189-
Image.open(IMG_WORLD).resize((w, h)) # , Image.ANTIALIAS)
190-
)
188+
self._img = ImageTk.PhotoImage(Image.open(IMG_WORLD).resize((w, h)))
191189
self._marker = ImageTk.PhotoImage(Image.open(ICON_POS))
192190
self._can_mapview.create_image(0, 0, image=self._img, anchor=NW)
193191
x = (w / 2) + int((lon * (w / 360))) + OFFSET_X

0 commit comments

Comments
 (0)