summaryrefslogtreecommitdiff
path: root/lib/taurus/core/util/parse_args.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/taurus/core/util/parse_args.py')
-rw-r--r--lib/taurus/core/util/parse_args.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/taurus/core/util/parse_args.py b/lib/taurus/core/util/parse_args.py
index 3da75c67..034c4abb 100644
--- a/lib/taurus/core/util/parse_args.py
+++ b/lib/taurus/core/util/parse_args.py
@@ -33,10 +33,10 @@ def parse_args(s, strip_pars=False):
corresponding args and kwargs.
:param s: string representing arguments to a method
- :type strip_pars: (bool) If True, expect s to include surrounding
- parenthesis
+ :param strip_pars: (bool) If True, expect s to include surrounding
+ parenthesis
:return: args, kwargs (a list of positional arguments and a dict of keyword
- arguments)
+ arguments)
"""
s = s.strip()
if strip_pars: