effectivepython icon indicating copy to clipboard operation
effectivepython copied to clipboard

Item 5: Code example missing indent

Open altgeek opened this issue 3 years ago • 0 comments

See

green_str = my_values.get('green', [''])
if green_str[0]:
    green = int(green_str[0])
else:
green = 0

altgeek avatar Jun 15 '22 12:06 altgeek