DEV Community

Discussion on: Dead Simple Python: Data Typing and Immutability

Collapse
 
natter1 profile image
natter1

I think there is a small mistake in

def grapplingHook(direction, angle, battleCry = None):
    if battleCry:
        battleCry = ""
    print(battleCry)

should be

if not battleCry:
...

Thanks for this cool tutorial btw.

Collapse
 
codemouse92 profile image
Jason C. McDonald

Ooh! Good catch, @natter!