Skip to content

Commit d72d9d0

Browse files
committed
Fix config access for progress
1 parent 9ccf592 commit d72d9d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/commands/progress.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def reset(ctx: click.Context) -> None:
109109
gitmastery_exercise_config = read_gitmastery_exercise_config(
110110
gitmastery_exercise_root_path
111111
)
112-
exercise_name = gitmastery_exercise_config["exercise_name"]
112+
exercise_name = gitmastery_exercise_config.exercise_name
113113

114114
if not gitmastery_config.get("progress_setup", False):
115115
error(

0 commit comments

Comments
 (0)