We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c6d5ff commit 62d977aCopy full SHA for 62d977a
pyqtlet2/leaflet/layer/marker/marker.py
@@ -2,14 +2,15 @@
2
from ..icon import Icon
3
from ...core.Parser import Parser
4
from PyQt5.QtCore import pyqtSlot, pyqtSignal, QJsonValue
5
+from typing import List
6
7
8
class Marker(Layer):
9
moveend = pyqtSignal(dict)
10
move = pyqtSignal(dict)
11
click = pyqtSignal(dict)
12
- def __init__(self, latLng: list[float], options=None):
13
+ def __init__(self, latLng: List[float], options=None):
14
super().__init__()
15
if isinstance(options, type(None)):
16
options = {}
0 commit comments