Return True/False if the normalized rendered version of two folium map objects are the equal or not.
(obj1: str, obj2: str)
| 354 | |
| 355 | |
| 356 | def compare_rendered(obj1: str, obj2: str) -> bool: |
| 357 | """ |
| 358 | Return True/False if the normalized rendered version of |
| 359 | two folium map objects are the equal or not. |
| 360 | |
| 361 | """ |
| 362 | return normalize(obj1) == normalize(obj2) |
| 363 | |
| 364 | |
| 365 | def normalize(rendered: str) -> str: |
nothing calls this directly
no test coverage detected
searching dependent graphs…