KOSASIH / Pi-CryptoConnect

Expected 2 blank lines FLK-E302
Style
Minor
6 occurrences in this check
expected 2 blank lines, found 1
54    def audit(self):
55        pass
56
57class Communication:58    def __init__(self, config):
59        pass
60
expected 2 blank lines, found 1
47    def detect(self):
48        pass
49
50class Auditor:51    def __init__(self, config):
52        pass
53
expected 2 blank lines, found 1
40    def prevent(self):
41        pass
42
43class AnomalyDetector:44    def __init__(self, config):
45        pass
46
expected 2 blank lines, found 1
33    def detect(self):
34        pass
35
36class IntrusionPrevention:37    def __init__(self, config):
38        pass
39
expected 2 blank lines, found 1
26            self.communication.communicate()
27            time.sleep(1)
28
29class ThreatDetector:30    def __init__(self, config):
31        pass
32
expected 2 blank lines, found 1
 8from sklearn.model_selection import train_test_split
 9from sklearn.preprocessing import StandardScaler
10
11class ZiberGuardian:12    def __init__(self, config):
13        self.config = config
14        self.threat_detector = ThreatDetector(config)