Skip to content

Commit

Permalink
Merge pull request #33 from WhereGroup/fix_data_source_handling
Browse files Browse the repository at this point in the history
Fix parameter order (broken import/removal of data sources)
  • Loading branch information
kannes authored Nov 2, 2024
2 parents 0d34cdf + dd1dae0 commit ead70fb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
def import_data_sources(
source_qgis_ini_file: str,
target_qgis_ini_file: str,
dictionary_of_checked_database_sources: dict,
dictionary_of_checked_web_sources: dict,
dictionary_of_checked_database_sources: dict,
):
"""Handles data source import"""
dictionary_of_checked_sources = {
Expand Down Expand Up @@ -71,8 +71,8 @@ def import_data_sources(

def remove_data_sources(
qgis_ini_file: str,
dictionary_of_checked_database_sources: dict,
dictionary_of_checked_web_sources: dict,
dictionary_of_checked_database_sources: dict,
):
"""Handles data source removal from file"""
dictionary_of_checked_sources = {
Expand Down

0 comments on commit ead70fb

Please sign in to comment.