Bug Report for https://neetcode.io/problems/python-hide-hero-details
Please describe the bug below and include any steps to reproduce the bug or screenshots if possible.
nit - Typo in L14
super_hero.set_health(-10) # this should print You can't set the health to less than 100
Should be
super_hero.set_health(-10) # this should print You can't set the health to less than 0