diff options
author | Sugarbell <67601252+TaprisSugarbell@users.noreply.github.com> | 2024-07-05 00:52:36 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-05 00:52:36 -0600 |
commit | 93c0c95789e9f23171f42f650ca2a55ba3136d48 (patch) | |
tree | 1642f1c0c498f8563b5b458d3f172ba9a1b044b7 /es-es/python-es.html.markdown | |
parent | 4825b6039d379668ce3e6595ea79dcb94b1fb4e5 (diff) |
remove unnecessary parentheses (#4994)
Diffstat (limited to 'es-es/python-es.html.markdown')
-rw-r--r-- | es-es/python-es.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/es-es/python-es.html.markdown b/es-es/python-es.html.markdown index cc53f944..f9786b39 100644 --- a/es-es/python-es.html.markdown +++ b/es-es/python-es.html.markdown @@ -551,7 +551,7 @@ def decir(decir_por_favor=False): print(decir()) # ¿Puedes comprarme una cerveza? -print(decir(decir_por_favor=True)) # ¿Puedes comprarme una cerveza? ¡Por favor! Soy pobre :() +print(decir(decir_por_favor=True)) # ¿Puedes comprarme una cerveza? ¡Por favor! Soy pobre :( ``` ## ¿Listo para más? |