Blas Isaias Fernández

Results 8 comments of Blas Isaias Fernández

Please, i need this changes too.

Tengo un caso similar, al parecer no reconoce algunas sintaxis de Python. ![imagen](https://github.com/user-attachments/assets/ee25fe0c-3dbc-4992-8b9d-be20f775de1c) Mi solución: ```python def createXmasTree(height, ornament): width = 1 + (height - 1) * 2 branches =...

> @blasferna El problema no está en Python, sino en cómo se usa el formato dentro de las f-strings. Python no permite evaluar variables (como {width}) dentro de un formato...

@e-duard2 Gracias por la sugerencia de utilizar `str.center()` con eso ya no tengo problemas. ```python def createXmasTree(ornament, height): width = 1 + (height - 1) * 2 branches = [(ornament...

Me ha pasado en varios retos que no admite sintaxis válidas de Python. Por ejemplo: #316 Mi teoría es que Adventjs está traduciendo el código Python a Javascript y luego...

It seems like the `TemplateDoesNotExist` error is related to the location of your `degree_form.html` template file. Please ensure it's in the correct directory, which should be something like `SMS/apps/templates/home/degree_form.html.` If...

I noticed you're working with the "cripspy-formset-modal" template in your Django project, and you mentioned modifying the "form.html" template. If your intention is not to modify a specific functionality of...