Skip to content

Commit

Permalink
docsting updates/fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
StSchulze committed Dec 5, 2018
1 parent f88f5b5 commit 5da8d62
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions uparma/uparma.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def translate(self, param_dict, source_style=None, target_style=None):
Returns:
translated_params (dict-like): dict with the translated key and
values for the input dict with additional information in
self.details (see above).
self.details (see below).
For example an input in ursgal style::
Expand All @@ -136,7 +136,7 @@ def translate(self, param_dict, source_style=None, target_style=None):
can be converted to msgfplus style, yielding::
{
'-minLength' : 8.
'-minLength' : 8,
'-t' : 'ppm'
}
Expand Down Expand Up @@ -208,7 +208,7 @@ class UParmaDict(dict):
UParma Dict
Offers original key and values that have been translated by
the UParMa in self.details.
the UParma translate function and stored in self.details.
"""
def __init__(self,*args, **kwargs):
self.details = {}
Expand Down

0 comments on commit 5da8d62

Please sign in to comment.