diff --git a/folium/features.py b/folium/features.py index 0d157c7bb..d75288a4e 100644 --- a/folium/features.py +++ b/folium/features.py @@ -1934,4 +1934,4 @@ def __init__( for (lat1, lng1), (lat2, lng2), color in zip(coords[:-1], coords[1:], colors): out.setdefault(cm(color), []).append([[lat1, lng1], [lat2, lng2]]) for key, val in out.items(): - self.add_child(PolyLine(val, color=key, weight=weight, opacity=opacity)) + self.add_child(PolyLine(val, color=key, weight=weight, opacity=opacity)) \ No newline at end of file diff --git a/folium/folium.py b/folium/folium.py index a9e396613..6d1dbb2b1 100644 --- a/folium/folium.py +++ b/folium/folium.py @@ -472,4 +472,4 @@ def keep_in_front(self, *args: Layer) -> None: Does not work with markers, for those use z_index_offset. """ for obj in args: - self.objects_to_stay_in_front.append(obj) + self.objects_to_stay_in_front.append(obj) \ No newline at end of file diff --git a/folium/map.py b/folium/map.py index 8a8c054b6..7db9da24a 100644 --- a/folium/map.py +++ b/folium/map.py @@ -723,4 +723,4 @@ def __init__( self._name = "Pane" self.name = name self.z_index = z_index - self.pointer_events = pointer_events + self.pointer_events = pointer_events \ No newline at end of file diff --git a/folium/raster_layers.py b/folium/raster_layers.py index 411b671f4..ff449871a 100644 --- a/folium/raster_layers.py +++ b/folium/raster_layers.py @@ -423,4 +423,4 @@ def _get_self_bounds(self) -> TypeBounds: in the form [[lat_min, lon_min], [lat_max, lon_max]] """ - return self.bounds + return self.bounds \ No newline at end of file diff --git a/folium/vector_layers.py b/folium/vector_layers.py index 6e0350610..83ec1c8cc 100644 --- a/folium/vector_layers.py +++ b/folium/vector_layers.py @@ -382,4 +382,4 @@ def __init__( ): super().__init__(location, popup=popup, tooltip=tooltip) self._name = "CircleMarker" - self.options = path_options(line=False, radius=radius, **kwargs) + self.options = path_options(line=False, radius=radius, **kwargs) \ No newline at end of file