BRGM / gml_application_schema_toolbox

GML Application Schema toolbox is a QGIS plugin allowing to manipulate OGC Complex Features
https://brgm.github.io/gml_application_schema_toolbox/
GNU General Public License v2.0
26 stars 17 forks source link

Fix #234 #235

Closed frida-161 closed 1 year ago

frida-161 commented 1 year ago

The Error in #234 was simply the result of `dataset_creation_options' only returning something when the if condition is True.

The solution was moving the return statement out of the conditional block.

codecov-commenter commented 1 year ago

Codecov Report

Merging #235 (2261b94) into master (c171380) will not change coverage. The diff coverage is 0.00%.

Impacted file tree graph

@@           Coverage Diff           @@
##           master     #235   +/-   ##
=======================================
  Coverage   19.12%   19.12%           
=======================================
  Files          42       42           
  Lines        3708     3708           
  Branches      610      610           
=======================================
  Hits          709      709           
  Misses       2947     2947           
  Partials       52       52           
Impacted Files Coverage Δ
...plication_schema_toolbox/gui/import_gmlas_panel.py 0.00% <0.00%> (ø)
Guts commented 1 year ago

Thanks!