File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77from .base import Bugzilla
88from .rhbugzilla import RHBugzilla
99
10-
1110# These are old compat classes. Nothing new should be added here,
1211# and these should not be altered
1312
14- class Bugzilla3 (Bugzilla ): pass
15- class Bugzilla32 (Bugzilla ): pass
16- class Bugzilla34 (Bugzilla ): pass
17- class Bugzilla36 (Bugzilla ): pass
18- class Bugzilla4 (Bugzilla ): pass
19- class Bugzilla42 (Bugzilla ): pass
20- class Bugzilla44 (Bugzilla ): pass
21- class NovellBugzilla (Bugzilla ): pass
22- class RHBugzilla3 (RHBugzilla ): pass
23- class RHBugzilla4 (RHBugzilla ): pass
13+
14+ class Bugzilla3 (Bugzilla ):
15+ pass
16+
17+
18+ class Bugzilla32 (Bugzilla ):
19+ pass
20+
21+
22+ class Bugzilla34 (Bugzilla ):
23+ pass
24+
25+
26+ class Bugzilla36 (Bugzilla ):
27+ pass
28+
29+
30+ class Bugzilla4 (Bugzilla ):
31+ pass
32+
33+
34+ class Bugzilla42 (Bugzilla ):
35+ pass
36+
37+
38+ class Bugzilla44 (Bugzilla ):
39+ pass
40+
41+
42+ class NovellBugzilla (Bugzilla ):
43+ pass
44+
45+
46+ class RHBugzilla3 (RHBugzilla ):
47+ pass
48+
49+
50+ class RHBugzilla4 (RHBugzilla ):
51+ pass
Original file line number Diff line number Diff line change @@ -62,9 +62,6 @@ def run(self):
6262 format = "pylint" ,
6363 paths = files ,
6464 )
65- style_guide .options .exclude = pycodestyle .normalize_paths (
66- "bugzilla/oldclasses.py" ,
67- )
6865 report = style_guide .check_files ()
6966 if style_guide .options .count :
7067 sys .stderr .write (str (report .total_errors ) + '\n ' )
You can’t perform that action at this time.
0 commit comments