Procházet zdrojové kódy

PEP8/PyLint on fieldtypes/bool.py

Roland Haroutiounian před 9 roky
rodič
revize
5266c9ccf2
1 změnil soubory, kde provedl 4 přidání a 3 odebrání
  1. 4
    3
      EditorialModel/fieldtypes/bool.py

+ 4
- 3
EditorialModel/fieldtypes/bool.py Zobrazit soubor

@@ -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…
Zrušit
Uložit