Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-added-large-files
- id: check-ast

- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.9.0
rev: v1.10.0
hooks:
- id: python-use-type-annotations

- repo: https://gitlab.com/pycqa/flake8
rev: 3.9.2
- repo: https://github.com/PyCQA/flake8
rev: 7.1.1
hooks:
- id: flake8
args: ["--ignore=E501"]
2 changes: 1 addition & 1 deletion exercises/exercise1.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@

# COMPLETAR - FIN

assert es_divisible_por_siete
assert es_divisible_por_siete
2 changes: 1 addition & 1 deletion exercises/exercise10.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@

# COMPLETAR - FIN

assert variable_06 is False
assert variable_06 is False
2 changes: 1 addition & 1 deletion exercises/exercise2.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@

# COMPLETAR - FIN

assert resultado == 80
assert resultado == 80
2 changes: 1 addition & 1 deletion exercises/exercise3.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@

# COMPLETAR - FIN

assert comparar_frutas
assert comparar_frutas
2 changes: 1 addition & 1 deletion exercises/exercise4.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@

# COMPLETAR - FIN

assert resultado_resta == -456350
assert resultado_resta == -456350
2 changes: 1 addition & 1 deletion exercises/exercise5.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,4 @@

# COMPLETAR - FIN

assert strings_concatenados == "Le pagué 2 pesos que le debía a Ezequiel, me faltan $4"
assert strings_concatenados == "Le pagué 2 pesos que le debía a Ezequiel, me faltan $4"
4 changes: 2 additions & 2 deletions exercises/exercise6.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""

# COMPLETAR - INICIO
lista_01 =
lista_01 =
# COMPLETAR - FIN

assert len(lista_01) == 4
Expand Down Expand Up @@ -202,4 +202,4 @@

# COMPLETAR - FIN

assert not tiene_todo_aprobado
assert not tiene_todo_aprobado
2 changes: 1 addition & 1 deletion exercises/exercise7.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,4 @@

# COMPLETAR - FIN

assert string_concatenado == "anoche fui a la fiesta"
assert string_concatenado == "anoche fui a la fiesta"
2 changes: 1 addition & 1 deletion exercises/exercise8.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,4 +155,4 @@

# COMPLETAR - FIN

assert diccionario_6 == {1: 1111, 2: 2223, 3: 3334, 4: 4444, 5: 5555, 6: 6666}
assert diccionario_6 == {1: 1111, 2: 2223, 3: 3334, 4: 4444, 5: 5555, 6: 6666}
2 changes: 1 addition & 1 deletion exercises/exercise9.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,4 @@

# COMPLETAR - FIN

assert conjunto_diferencia_simetrica == {4, 9}
assert conjunto_diferencia_simetrica == {4, 9}