comparison: Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleChecker.py
Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleChecker.py
- branch
- BgService
- changeset 3228
- f489068e51e8
- parent 3209
- c5432abceb25
- child 3413
- 5e63f809732a
equal
deleted
inserted
replaced
4 # |
4 # |
5 |
5 |
6 """ |
6 """ |
7 Module implementing the code style checker. |
7 Module implementing the code style checker. |
8 """ |
8 """ |
9 |
|
10 from __future__ import unicode_literals |
|
11 |
9 |
12 import sys |
10 import sys |
13 |
11 |
14 import pep8 |
12 import pep8 |
15 from NamingStyleChecker import NamingStyleChecker |
13 from NamingStyleChecker import NamingStyleChecker |