Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
zuoxingdong committed Aug 24, 2018
1 parent 8ea32f6 commit bc20d28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lagom/base_algo.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class BaseAlgorithm(object):
The subclass should implement at least the following:
- __call__(self, config)
- :meth:`__call__`
"""
def __init__(self, name):
r"""Initialize the algorithm.
Expand All @@ -22,7 +22,7 @@ def __call__(self, config):
config (OrderedDict): dictionary of configurations
Returns:
result (object): Result of the execution.
If no need to return anything, then an ``None`` should be returned.
result (object): result of the execution. If no need to return anything,
then an ``None`` should be returned.
"""
raise NotImplementedError

0 comments on commit bc20d28

Please sign in to comment.