Skip to content

Commit

Permalink
fix : NAFAS_NOTICE --> NAFAS_TIPS
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Dec 31, 2024
1 parent 1afdf4b commit 2f88581
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions nafas/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""nafas functions."""

import time
from nafas.params import NAFAS_DESCRIPTION, NAFAS_NOTICE, NAFAS_CAUTIONS, STANDARD_MENU, STANDARD_MENU_ORDER, STEP_MAP
from nafas.params import NAFAS_DESCRIPTION, NAFAS_TIPS, NAFAS_CAUTIONS, STANDARD_MENU, STANDARD_MENU_ORDER, STEP_MAP
from nafas.params import PROGRAMS, PROGRAM_DESCRIPTION, SOUND_MAP, STEP_TEMPLATE, CYCLE_TEMPLATE
from nafas.params import SOUND_WARNING_MESSAGE, EXIT_MESSAGE, BAD_INPUT_MESSAGE, PROGRAM_END_MESSAGE
from nafas.params import MINUTES_TEMPLATE, SECONDS_TEMPLATE, PROGRAM_TIME_TEMPLATE
Expand Down Expand Up @@ -148,7 +148,7 @@ def description_print():
:return: None
"""
print("\n".join(justify(NAFAS_DESCRIPTION.split(), 100)))
print(NAFAS_NOTICE)
print(NAFAS_TIPS)
line()
print(NAFAS_CAUTIONS)

Expand Down
2 changes: 1 addition & 1 deletion nafas/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
No need to walk away to take a break, just sit comfortably, run Nafas and let the journey begin.
"""

NAFAS_NOTICE = """
NAFAS_TIPS = """
Breathing tips:
1. Inhaling is only done through the nose
Expand Down

0 comments on commit 2f88581

Please sign in to comment.