Skip to content

Commit 7003f68

Browse files
committed
Fix typo in laptop availability message
by removing extra parenthesis
1 parent f4cb507 commit 7003f68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

prep_exercise/8_enums.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def main() -> None:
9797
if best_os != person.preferred_operating_system and best_count > preferred_count:
9898
print(
9999
f"If you are willing to accept {best_os.value} instead,"
100-
f"You're more likely to get a laptop. {best_count} available)."
100+
f"You're more likely to get a laptop. {best_count} available."
101101
)
102102

103103
if __name__ == "__main__":

0 commit comments

Comments
 (0)