We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3b4ac5 commit c472023Copy full SHA for c472023
hands_on/stage_modified.py
@@ -30,4 +30,6 @@ def download(verbose: bool):
30
run_command(["git", "init", "--initial-branch=main"], verbose)
31
with open("fruits.txt", "w") as f:
32
f.write("apples\nbananas\ncherries\n")
33
- run_command(["git", "add", "fruits.txt"], verbose)
+ run_command(["git", "add", "fruits.txt"], verbose)
34
+ with open("fruits.txt", "a") as f:
35
+ f.write("dragon fruits\n")
0 commit comments