Skip to content

Commit

Permalink
Rename "datasources" directory to "handlers"
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Kröger committed Feb 5, 2025
1 parent a0269f5 commit 7187ab5
Show file tree
Hide file tree
Showing 12 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion profile_manager/gui/utils.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from qgis.PyQt.QtCore import Qt
from qgis.PyQt.QtWidgets import QListWidgetItem, QTreeWidgetItem

from profile_manager.datasources.plugins import CORE_PLUGINS
from profile_manager.handlers.plugins import CORE_PLUGINS


def data_sources_as_tree(
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
18 changes: 9 additions & 9 deletions profile_manager/profile_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@
from qgis.PyQt.QtGui import QIcon
from qgis.PyQt.QtWidgets import QAction, QWidget

from profile_manager.datasources.bookmarks import import_bookmarks
from profile_manager.datasources.customization import import_customizations
from profile_manager.datasources.data_sources import (
from profile_manager.handlers.bookmarks import import_bookmarks
from profile_manager.handlers.customization import import_customizations
from profile_manager.handlers.data_sources import (
collect_data_sources,
import_data_sources,
remove_data_sources,
)
from profile_manager.datasources.expressions import import_expressions
from profile_manager.datasources.favourites import import_favourites
from profile_manager.datasources.models import import_models
from profile_manager.datasources.plugins import (
from profile_manager.handlers.expressions import import_expressions
from profile_manager.handlers.favourites import import_favourites
from profile_manager.handlers.models import import_models
from profile_manager.handlers.plugins import (
collect_plugin_names,
import_plugins,
remove_plugins,
)
from profile_manager.datasources.scripts import import_scripts
from profile_manager.datasources.styles import import_styles
from profile_manager.handlers.scripts import import_scripts
from profile_manager.handlers.styles import import_styles
from profile_manager.profile_manager_dialog import ProfileManagerDialog
from profile_manager.profiles.profile_handler import (
copy_profile,
Expand Down

0 comments on commit 7187ab5

Please sign in to comment.