Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2023-01-07 18:07:19 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-01-07 18:09:55 +0300
commit331a233021a03c2fc90e743558d97ebd9efd1ee8 (patch)
treef52c18963eb209a865075187fb247f13dfff3c1e /pyproject.toml
parent7402594f83785041f213f64a1fe00c396fdaefa7 (diff)
refactor: Remove dynamic GUI import
This was an intended to provide a possibility to develop alternative GUIs for specific dialogs but didnt catch on. - Use absolut imports everywhere
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml11
1 files changed, 10 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index f4f822da3..9fe80dd1b 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -179,5 +179,14 @@ force_alphabetical_sort_within_sections = true
force_single_line = true
group_by_package = true
known_typing = ["typing"]
-sections = ["FUTURE", "TYPING", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
+known_gtk = ["gajim.gtk"]
+sections = [
+ "FUTURE",
+ "TYPING",
+ "STDLIB",
+ "THIRDPARTY",
+ "FIRSTPARTY",
+ "GTK",
+ "LOCALFOLDER"
+]
skip_gitignore = true