Skip to content

Commit

Permalink
#27 - python
Browse files Browse the repository at this point in the history
  • Loading branch information
SooHav committed Jul 3, 2024
1 parent 2a50d5c commit 83ee900
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Roadmap/27 - SOLID OCP/python/SooHav.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def conversacion(self, pato1: Pato, pato2: Pato, mensaje1: str, mensaje2: str):


class DialogoHistorieta(Dialogo):
"""Clase concreta para el diálogo en formato historieta"""
"""Clase para el diálogo en formato historieta"""

def conversacion(self, pato1: Pato, pato2: Pato, mensaje1: str, mensaje2: str):
frase1 = f"{pato1.nombre}: {pato1.dice()}, {mensaje1}"
Expand All @@ -123,7 +123,7 @@ def conversacion(self, pato1: Pato, pato2: Pato, mensaje1: str, mensaje2: str):


class DialogoFormal(Dialogo):
"""Clase concreta para el diálogo en un formato más formal"""
"""Clase para el diálogo en un formato más formal"""

def conversacion(self, pato1: Pato, pato2: Pato, mensaje1: str, mensaje2: str):
frase1 = f"{pato1.nombre}: Buen día, {pato2.nombre}. {mensaje1}"
Expand Down

0 comments on commit 83ee900

Please sign in to comment.