From 2ba35383e2a49264231560d81589627c1864fdf3 Mon Sep 17 00:00:00 2001 From: squidfunk Date: Sun, 10 Sep 2023 16:32:06 +0200 Subject: [PATCH] Removed tags settings only available in Insiders from schema --- material/plugins/tags/config.py | 6 ------ src/plugins/tags/config.py | 6 ------ 2 files changed, 12 deletions(-) diff --git a/material/plugins/tags/config.py b/material/plugins/tags/config.py index a1d4f1e2d..f2d950845 100644 --- a/material/plugins/tags/config.py +++ b/material/plugins/tags/config.py @@ -36,9 +36,3 @@ class TagsConfig(Config): # Settings for tags tags = Type(bool, default = True) tags_file = Optional(Type(str)) - tags_extra_files = Type(dict, default = {}) - tags_slugify = Type((type(slugify), partial), default = slugify) - tags_slugify_separator = Type(str, default = "-") - tags_compare = Optional(Type(type(casefold))) - tags_compare_reverse = Type(bool, default = False) - tags_allowed = Type(list, default = []) diff --git a/src/plugins/tags/config.py b/src/plugins/tags/config.py index a1d4f1e2d..f2d950845 100644 --- a/src/plugins/tags/config.py +++ b/src/plugins/tags/config.py @@ -36,9 +36,3 @@ class TagsConfig(Config): # Settings for tags tags = Type(bool, default = True) tags_file = Optional(Type(str)) - tags_extra_files = Type(dict, default = {}) - tags_slugify = Type((type(slugify), partial), default = slugify) - tags_slugify_separator = Type(str, default = "-") - tags_compare = Optional(Type(type(casefold))) - tags_compare_reverse = Type(bool, default = False) - tags_allowed = Type(list, default = [])