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

Review basesvc documentation.

parent 76333226
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,6 @@ cron/ ...@@ -8,7 +8,6 @@ cron/
_build/ _build/
databases/ databases/
errors/ errors/
generated/
httpserver.log httpserver.log
private/ private/
sessions/ sessions/
......
plugin_dbui.basesvc.BaseSvc.dbg
===============================
.. currentmodule:: plugin_dbui.basesvc
.. automethod:: BaseSvc.dbg
\ No newline at end of file
plugin_dbui.basesvc.BaseSvc
===========================
.. currentmodule:: plugin_dbui.basesvc
.. autoclass:: BaseSvc
.. rubric:: Methods
.. autosummary::
:toctree: basesvc/
~BaseSvc.dbg
...@@ -17,10 +17,10 @@ class BaseSvc: ...@@ -17,10 +17,10 @@ class BaseSvc:
def dbg(self, *args): def dbg(self, *args):
"""Print ``args`` if the attribute debug is true. """Print the arguments when the attribute debug is true.
Args: Args:
args (list): object to be printed *args (object): variable list of objects to be printed
""" """
if self.debug: if self.debug:
......
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