Browse Source

PEP8/PyLint on fieldtypes/bool.py

Roland Haroutiounian 9 years ago
parent
commit
5266c9ccf2
1 changed files with 4 additions and 3 deletions
  1. 4
    3
      EditorialModel/fieldtypes/bool.py

+ 4
- 3
EditorialModel/fieldtypes/bool.py View File

@@ -2,14 +2,15 @@
2 2
 
3 3
 from EditorialModel.fields import EmField
4 4
 
5
+
5 6
 class EmFieldBool(EmField):
6
-    
7
+
7 8
     ftype = 'bool'
8 9
     help = 'A basic boolean field'
9
-    
10
+
10 11
     ## @brief A char field
11 12
     # @brief max_length int : The maximum length of this field
12 13
     def __init__(self, **kwargs):
13 14
         super(EmFieldBool, self).__init__(**kwargs)
14 15
 
15
-fclass=EmFieldBool
16
+fclass = EmFieldBool

Loading…
Cancel
Save