📝 Fix duplicated variable in `docs_src/python_types/tutorial005_py39.py` (#14565)

Fix duplicated variable in python types example
This commit is contained in:
Paras Verma 2025-12-20 12:10:21 +05:30 committed by GitHub
parent 261c11b218
commit d70ed5eceb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1,2 +1,2 @@
def get_items(item_a: str, item_b: int, item_c: float, item_d: bool, item_e: bytes):
return item_a, item_b, item_c, item_d, item_d, item_e
return item_a, item_b, item_c, item_d, item_e