Skip to content

Commit 9adf852

Browse files
authored
Update p10_remove_duplicates_from_seq_order.rst
1 parent 1e2df84 commit 9adf852

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

+1-1
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)