Skip to content

Commit

Permalink
Merge pull request #82 from pgRouting/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
cayetanobv authored Oct 10, 2018
2 parents 4bd033a + fc3a618 commit acde10b
Show file tree
Hide file tree
Showing 40 changed files with 1,638 additions and 1,735 deletions.
19 changes: 19 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# http://editorconfig.org

root = true

[*]
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
end_of_line = lf
charset = utf-8

# Docstrings and comments use max_line_length = 79
[*.py]
max_line_length = 119

# Makefiles always use tabs for indentation
[Makefile]
indent_style = tab
140 changes: 0 additions & 140 deletions Test_utils.py

This file was deleted.

9 changes: 5 additions & 4 deletions __init__.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
/***************************************************************************
pgRouting Layer
a QGIS plugin
based on "Fast SQL Layer" plugin Copyright 2011 Pablo Torres Carreira
based on "Fast SQL Layer" plugin Copyright 2011 Pablo Torres Carreira
-------------------
begin : 2011-11-25
copyright : (c) 2011 by Anita Graser
Expand All @@ -21,6 +21,7 @@
This script initializes the plugin, making it known to QGIS.
"""


def name():
return "pgRouting Layer"
def description():
Expand All @@ -32,5 +33,5 @@ def icon():
def qgisMinimumVersion():
return "1.7"
def classFactory(iface):
from pgRoutingLayer import pgRoutingLayer
return pgRoutingLayer(iface)
from pgRoutingLayer.pgRoutingLayer import PgRoutingLayer
return PgRoutingLayer(iface)
Empty file modified connectors/__init__.py
100644 → 100755
Empty file.
Loading

0 comments on commit acde10b

Please sign in to comment.