mbi / django-simple-captcha

Django Simple Captcha is an extremely simple, yet highly customizable Django application to add captcha images to any Django form.
http://django-simple-captcha.readthedocs.io/en/latest/
MIT License
1.38k stars 322 forks source link

"open-close file" logic to "with open" and type hints #230

Open LucasGoncSilva opened 7 months ago

LucasGoncSilva commented 7 months ago

While adding type hints for more readability, updated the logic of using...

foo = open(...)
bar = foo.readlines()
foo.close()

...to...

with open(...) as foo:
    bar = foo.readlines()
LucasGoncSilva commented 7 months ago

I will appreciate if there is a feedback. Thanks!