Files
@ 63bed817308c
Branch filter:
Location: kallithea/kallithea/templates/admin/repos/repo_edit_advanced.html
63bed817308c
3.7 KiB
text/html
cleanup: check for None object identity in cases where that is what the 'contract' says
Avoid applying bool() on complex objects - it might return something unexpected
such as the key (which might be 0 and thus be false). Checking for None is more
safe and faster.
Avoid applying bool() on complex objects - it might return something unexpected
such as the key (which might be 0 and thus be false). Checking for None is more
safe and faster.