From 5307f8582c9c5d2039f36e582ccf12bb49573729 Mon Sep 17 00:00:00 2001 From: Esa Jokinen <58781154+oh2fih@users.noreply.github.com> Date: Thu, 6 Jun 2024 17:38:06 +0300 Subject: [PATCH] users_ldap_groups update docstring on operators() Co-authored-by: Hpar --- users_ldap_groups/models/res_company_ldap_operator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users_ldap_groups/models/res_company_ldap_operator.py b/users_ldap_groups/models/res_company_ldap_operator.py index d8bde5b8a..fedafa911 100644 --- a/users_ldap_groups/models/res_company_ldap_operator.py +++ b/users_ldap_groups/models/res_company_ldap_operator.py @@ -17,7 +17,7 @@ class ResCompanyLdapOperator(models.AbstractModel): @api.model def operators(self): - """Return names of function to call on this model as operator""" + """Return names (without '_') of function to call on this model as operator""" return ("contains", "equals", "query") def _contains(self, ldap_entry, mapping):