Skip to content

Commit be36407

Browse files
authored
Merge pull request yidao620c#159 from superdtx/patch-1
Update p10_remove_duplicates_from_seq_order.rst
2 parents 1e2df84 + 9adf852 commit be36407

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/c01/p10_remove_duplicates_from_seq_order.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
for item in items:
2020
if item not in seen:
2121
yield item
22-
seen.add(item)
22+
seen.add(item)
2323
下面是使用上述函数的例子:
2424

2525
.. code-block:: python

0 commit comments

Comments
 (0)