Skip to content

Commit e875900

Browse files
committed
fix: Makefile and brain_games.py
1 parent 4a62887 commit e875900

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
reinstall:
2+
uv build
3+
uv tool install --force dist/*.whl
4+
uv sync
5+
16
install:
27
uv sync
38

brain_games/scripts/brain_games.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
def main():
55
print("Welcome to the Brain Games!")
66
name = prompt.string("May I have your name? ")
7-
print(f"Hello, ({name}!")
7+
print(f"Hello, {name}!")
88

99

1010
if __name__ == '__main__':

0 commit comments

Comments
 (0)