Browse Source

[#63] PEP8/Pylint checked on DataSource/MySQL module

Roland Haroutiounian 9 years ago
parent
commit
1b4f3634d3
1 changed files with 2 additions and 4 deletions
  1. 2
    4
      DataSource/MySQL/MySQL.py

+ 2
- 4
DataSource/MySQL/MySQL.py View File

1
 # -*- coding: utf8 -*-
1
 # -*- coding: utf8 -*-
2
 
2
 
3
 
3
 
4
-import EditorialModel
5
 import pymysql
4
 import pymysql
6
 
5
 
7
 
6
 
14
     _class_table_prefix = 'class_'
13
     _class_table_prefix = 'class_'
15
     _objects_table_name = 'object'
14
     _objects_table_name = 'object'
16
     _connections = {
15
     _connections = {
17
-        'default':{
16
+        'default': {
18
             'module': pymysql,
17
             'module': pymysql,
19
             'host': '127.0.0.1',
18
             'host': '127.0.0.1',
20
             'user': 'lodel',
19
             'user': 'lodel',
55
             raise ValueError("Invalid name : '%s'" % idname)
54
             raise ValueError("Invalid name : '%s'" % idname)
56
         return '`%s`' % idname
55
         return '`%s`' % idname
57
 
56
 
58
-
59
     @classmethod
57
     @classmethod
60
     ## @brief Given a fieldtype, returns a MySQL type specifier
58
     ## @brief Given a fieldtype, returns a MySQL type specifier
61
     # @param emfieldType EmFieldType : A fieldtype
59
     # @param emfieldType EmFieldType : A fieldtype
86
         else:
84
         else:
87
             raise ValueError("Unsupported fieldtype ftype : %s" % ftype)
85
             raise ValueError("Unsupported fieldtype ftype : %s" % ftype)
88
 
86
 
89
-        return res
87
+        return res

Loading…
Cancel
Save