Skip to content

Commit

Permalink
Merge pull request #17 from JanCaha/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
JanCaha authored Jul 17, 2024
2 parents 3fcb0d2 + c398dcf commit 686b2b6
Show file tree
Hide file tree
Showing 53 changed files with 2,347 additions and 1,773 deletions.
18 changes: 16 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,14 @@
"/usr/share/qgis/python"
],
"pylint.args": [
"--ignore=W293,W504"
"--ignore=W293,W504",
"--disable=E0611",
"--max-line-length=160"
],
"flake8.args": [
"--ignore=W293,W504"
"--ignore=W293,W504",
"--max-line-length",
"160"
],
"mypy-type-checker.args": [
"--follow-imports=silent",
Expand All @@ -24,6 +28,16 @@
"--no-pretty",
"--no-strict-optional"
],
"isort.args": [
"--profile",
"black",
"--line-width",
"120"
],
"black-formatter.args": [
"--line-length",
"120"
],
"svg.preview.background": "dark-transparent",
"python.testing.pytestArgs": [
"tests"
Expand Down
6 changes: 3 additions & 3 deletions los_tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
This script initializes the plugin, making it known to QGIS.
"""

__author__ = 'Jan Caha'
__date__ = '2020-03-05'
__copyright__ = '(C) 2020 by Jan Caha'
__author__ = "Jan Caha"
__date__ = "2020-03-05"
__copyright__ = "(C) 2020 by Jan Caha"

from .los_tools_plugin import LoSToolsPlugin

Expand Down
3 changes: 0 additions & 3 deletions los_tools/classes/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
from .list_raster import ListOfRasters
from .sampling_distance_matrix import SamplingDistanceMatrix
from .classes_los import LoSLocal, LoSGlobal, LoSWithoutTarget
Loading

0 comments on commit 686b2b6

Please sign in to comment.