MCPcopy Create free account
hub / github.com/dedsec1121fk/DedSec / start

Method start

Scripts/Network Tools/Store Scrapper.py:860–865  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

858 setattr(self, key, getattr(self, key) + amount)
859
860 def start(self) -> None:
861 if self.running:
862 return
863 self.running = True
864 self.thread = threading.Thread(target=self._loop, daemon=True)
865 self.thread.start()
866
867 def stop(self) -> None:
868 self.running = False

Calls

no outgoing calls

Tested by

no test coverage detected