Skip to content

Commit

Permalink
Update identation
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Nov 7, 2016
1 parent f8bda8d commit fd15090
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions python/plugins/db_manager/db_plugins/gpkg/connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,18 +350,18 @@ def getVectorTables(self, schema=None):

if geomtype == ogr.wkbNone:
item = list([Table.TableType,
lyr.GetName(),
False, # is_view
lyr.GetName(),
False, # is_view
])
else:
item = list([Table.VectorType,
lyr.GetName(),
False, # is_view
lyr.GetName(),
lyr.GetGeometryColumn(),
geomname,
geomdim,
srid])
lyr.GetName(),
False, # is_view
lyr.GetName(),
lyr.GetGeometryColumn(),
geomname,
geomdim,
srid])
items.append(item)
return items

Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/modeler/EditModelAction.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ def execute(self):
dlg.show()

def updateModel(self):
algList.reloadProvider('model')
algList.reloadProvider('model')

0 comments on commit fd15090

Please sign in to comment.