File tree Expand file tree Collapse file tree 1 file changed +25
-7
lines changed
python/plugins/db_manager/db_plugins/vlayers Expand file tree Collapse file tree 1 file changed +25
-7
lines changed Original file line number Diff line number Diff line change 19
19
***************************************************************************/
20
20
"""
21
21
22
- from PyQt4 .QtCore import QFile , QUrl , QTemporaryFile
23
- from PyQt4 .QtGui import QApplication
24
-
25
- from ..connector import DBConnector
26
- from ..plugin import ConnectionError , DbError , Table
27
-
28
- from qgis .core import *
22
+ from PyQt4 .QtCore import (
23
+ QFile ,
24
+ QUrl ,
25
+ QTemporaryFile
26
+ )
27
+ from PyQt4 .QtGui import (
28
+ QApplication
29
+ )
30
+
31
+ from ..connector import (
32
+ DBConnector
33
+ )
34
+ from ..plugin import (
35
+ ConnectionError ,
36
+ DbError ,
37
+ Table
38
+ )
39
+
40
+ from qgis .core import (
41
+ QGis ,
42
+ QgsMapLayerRegistry ,
43
+ QgsMapLayer ,
44
+ QgsCoordinateReferenceSystem ,
45
+ QgsDataSourceURI
46
+ )
29
47
30
48
import sqlite3
31
49
You can’t perform that action at this time.
0 commit comments