Skip to content

Commit 79e0e7c

Browse files
committed
fix regressions
1 parent b859e1b commit 79e0e7c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

folium/features.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1446,7 +1446,7 @@ def __init__(
14461446
columns: Optional[Sequence[Any]] = None,
14471447
key_on: Optional[str] = None,
14481448
bins: Union[int, Sequence[float]] = 6,
1449-
fill_color: str = "blue",
1449+
fill_color: Optional[str] = None,
14501450
nan_fill_color: str = "black",
14511451
fill_opacity: float = 0.6,
14521452
nan_fill_opacity: Optional[float] = None,

folium/vector_layers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ class Circle(Marker):
325325

326326
def __init__(
327327
self,
328-
location: Sequence[float],
328+
location: Optional[Sequence[float]] = None,
329329
radius: float = 50,
330330
popup: Union[Popup, str, None] = None,
331331
tooltip: Union[Tooltip, str, None] = None,

0 commit comments

Comments
 (0)