We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0184d2a commit 39d7473Copy full SHA for 39d7473
brain_games/games/brain_games.py
@@ -1,8 +1,4 @@
1
-from brain_games.scripts.main import greet
2
-
3
from brain_games.cli import welcome_user
4
5
6
-def main():
7
- greet()
8
- welcome_user()
+def greet():
+ print(f'Welcome to the Brain Games!')
brain_games/scripts/games.py
@@ -1,7 +1,7 @@
+from brain_games.games.brain_games import greet
def main():
+ welcome_user()
+ greet()
0 commit comments