From dd1dae09649c15a4633a862517084f9d2dc7ca0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Kr=C3=B6ger?= Date: Thu, 24 Oct 2024 13:26:17 +0200 Subject: [PATCH] Fix parameter order (broken import/removal of data sources) --- .../datasources/dataservices/datasource_distributor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/profile_manager/datasources/dataservices/datasource_distributor.py b/profile_manager/datasources/dataservices/datasource_distributor.py index 2288de3..5f0417c 100644 --- a/profile_manager/datasources/dataservices/datasource_distributor.py +++ b/profile_manager/datasources/dataservices/datasource_distributor.py @@ -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 = { @@ -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 = {