MCPcopy Create free account
hub / github.com/python-visualization/folium / classproperty

Class classproperty

folium/map.py:26–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24
25
26class classproperty:
27 def __init__(self, f):
28 self.f = f
29
30 def __get__(self, obj, owner):
31 return self.f(owner)
32
33
34if TYPE_CHECKING:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…