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

Loading…
Cancel
Save