MCPcopy Create free account
hub / github.com/apache/devlake / __init__

Method __init__

backend/python/pydevlake/pydevlake/plugin.py:39–44  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

37
38class Plugin(ABC):
39 def __init__(self):
40 self._streams = dict()
41 for stream in self.streams:
42 if isinstance(stream, type):
43 stream = stream(self.name)
44 self._streams[stream.name] = stream
45
46 @property
47 def name(self) -> str:

Callers

nothing calls this directly

Calls 1

streamFunction · 0.85

Tested by

no test coverage detected