X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/d35400a7d7655e777224db9beddb44a68f4f2949..b7554d9ed8357b716d3cf31b532edc2f85f5829d:/nominatim/tokenizer/sanitizers/split_name_list.py?ds=sidebyside diff --git a/nominatim/tokenizer/sanitizers/split_name_list.py b/nominatim/tokenizer/sanitizers/split_name_list.py index df2c305b..86385985 100644 --- a/nominatim/tokenizer/sanitizers/split_name_list.py +++ b/nominatim/tokenizer/sanitizers/split_name_list.py @@ -1,5 +1,9 @@ """ -Name processor that splits name values with multiple values into their components. +Sanitizer that splits lists of names into their components. + +Arguments: + delimiters: Define the set of characters to be used for + splitting the list. (default: `,;`) """ import re @@ -7,9 +11,7 @@ from nominatim.errors import UsageError def create(func): """ Create a name processing function that splits name values with - multiple values into their components. The optional parameter - 'delimiters' can be used to define the characters that should be used - for splitting. The default is ',;'. + multiple values into their components. """ delimiter_set = set(func.get('delimiters', ',;')) if not delimiter_set: