Skip to content

Commit af5e1fe

Browse files
committed
Conclusive function added after the action button appearance
1 parent 5f30447 commit af5e1fe

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

main.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,11 @@ def conclusion():
7878
"by raising a new issue in my repository. {}.".format(_line))
7979

8080
def actions(*add_skill):
81-
speak(f"Besides Python what's my key skill, I also have some additional skills. Some of worth mentioning"
81+
speak(f"Besides my key skill, I also have some additional skills. Some of worth mentioning"
8282
f"additional skills I know are: {add_skill[0]}")
8383
_actions = RESUME.get_options("ACTIONS")
84-
APP.create_actions(_actions)
84+
_ = APP.create_actions(_actions)
85+
_.after(10, conclusion)
8586

8687
def additional_skills(**cont):
8788
speak(f"If your kind consider allow you, kindly don't hesitate to contact me by calling me at "
@@ -136,7 +137,7 @@ def launch():
136137
temp.pack_forget()
137138
APP.create_two_columns()
138139
speak(f"Good morning {salutation}, I'm feeling too excited to present myself to you.")
139-
APP.window.after(1000, title)
140+
APP.window.after(10, title)
140141

141142
temp.after(5000, launch)
142143
# -------

0 commit comments

Comments
 (0)