Skip to content
Snippets Groups Projects
Commit 5301876b authored by LE GAC Renaud's avatar LE GAC Renaud
Browse files

Review filter.py documentation.

parent 47e1e442
No related branches found
No related tags found
No related merge requests found
plugin_dbui.filters.CLEAN_COMMA
===============================
.. currentmodule:: plugin_dbui.filters
.. autofunction:: CLEAN_COMMA
\ No newline at end of file
plugin_dbui.filters.CLEAN_SPACES
================================
.. currentmodule:: plugin_dbui.filters
.. autofunction:: CLEAN_SPACES
\ No newline at end of file
...@@ -10,10 +10,10 @@ def CLEAN_COMMA(value): ...@@ -10,10 +10,10 @@ def CLEAN_COMMA(value):
Search patterns are: ',' or ', ' or ' ,, ' ... Search patterns are: ',' or ', ' or ' ,, ' ...
Args: Args:
value (str or unicode): value (object):
Returns: Returns:
str or unicode: object:
the return the value is unchanged when it is not a string. the return the value is unchanged when it is not a string.
""" """
...@@ -28,10 +28,10 @@ def CLEAN_SPACES(value): ...@@ -28,10 +28,10 @@ def CLEAN_SPACES(value):
between words. between words.
Args: Args:
value (str or unicode): value (object):
Returns: Returns:
str or unicode: object:
the return the value is unchanged when it is not a string. the return the value is unchanged when it is not a string.
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment