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 6e6b070 commit 284e020Copy full SHA for 284e020
ipyleaflet/leaflet.py
@@ -498,7 +498,7 @@ class Popup(UILayer):
498
close_on_escape_key = Bool(True).tag(sync=True, o=True)
499
500
def open_popup(self, location=None):
501
- """ Open the popup on the bound map
+ """Open the popup on the bound map.
502
503
Parameters
504
----------
@@ -511,10 +511,11 @@ def open_popup(self, location=None):
511
self.send({'msg': 'open', 'location': self.location if location is None else location})
512
513
def close_popup(self):
514
- """ Close the popup on the bound map """
+ """Close the popup on the bound map."""
515
516
self.send({'msg': 'close'})
517
518
+
519
class RasterLayer(Layer):
520
"""Abstract RasterLayer class.
521
0 commit comments