Unverified Commit 6c63621a authored by Zaida Zhou's avatar Zaida Zhou Committed by GitHub
Browse files

[Docs] Fix typo (#1166)

parent 66cefaff
...@@ -618,7 +618,7 @@ class DictAction(Action): ...@@ -618,7 +618,7 @@ class DictAction(Action):
>>> DictAction._parse_iterable('[a, b, c]') >>> DictAction._parse_iterable('[a, b, c]')
['a', 'b', 'c'] ['a', 'b', 'c']
>>> DictAction._parse_iterable('[(1, 2, 3), [a, b], c]') >>> DictAction._parse_iterable('[(1, 2, 3), [a, b], c]')
[(1, 2, 3), ['a', 'b], 'c'] [(1, 2, 3), ['a', 'b'], 'c']
""" """
def find_next_comma(string): def find_next_comma(string):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment