📝 Add Spanish translation for the Python Types Intro page (#1237)

* Spanish translation Python Types Intro page

* 📝 Fix tuple docs in Types intro

* ✏️ Fix typos and wording nitpicks

Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
This commit is contained in:
Camila Gutierrez
2020-04-11 19:20:32 +02:00
committed by GitHub
parent 506d5dce39
commit bd1e85a8d3
4 changed files with 289 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
from typing import Set, Tuple
def process_items(items_t: Tuple[int], items_s: Set[bytes]):
def process_items(items_t: Tuple[int, int, str], items_s: Set[bytes]):
return items_t, items_s