We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6770927 commit 28e5458Copy full SHA for 28e5458
folium/features.py
@@ -1153,11 +1153,9 @@ def warn_for_geometry_collections(self) -> None:
1153
]
1154
if any(geom_collections):
1155
warnings.warn(
1156
- "{} is not configured to render for GeoJson GeometryCollection geometries. "
1157
- "Please consider reworking these features: {} to MultiPolygon for full functionality.\n"
1158
- "https://tools.ietf.org/html/rfc7946#page-9".format(
1159
- self._name, geom_collections
1160
- ),
+ f"{self._name} is not configured to render for GeoJson GeometryCollection geometries. "
+ f"Please consider reworking these features: {geom_collections} to MultiPolygon for full functionality.\n"
+ "https://tools.ietf.org/html/rfc7946#page-9",
1161
UserWarning,
1162
)
1163
0 commit comments