KOSASIH / Pi-CryptoConnect

Missing module/function docstring PY-D0003
Documentation
Minor
6 occurrences in this check
Docstring missing for communicate
58    def __init__(self, config):
59        pass
60
61    def communicate(self):62        pass
63
64if __name__ == "__main__":
Docstring missing for audit
51    def __init__(self, config):
52        pass
53
54    def audit(self):55        pass
56
57class Communication:
Docstring missing for detect
44    def __init__(self, config):
45        pass
46
47    def detect(self):48        pass
49
50class Auditor:
Docstring missing for prevent
37    def __init__(self, config):
38        pass
39
40    def prevent(self):41        pass
42
43class AnomalyDetector:
Docstring missing for detect
30    def __init__(self, config):
31        pass
32
33    def detect(self):34        pass
35
36class IntrusionPrevention:
Docstring missing for run
17        self.auditor = Auditor(config)
18        self.communication = Communication(config)
19
20    def run(self):21        while True:
22            self.threat_detector.detect()
23            self.intrusion_prevention.prevent()