for functions that do not return any value, is there any benefit in ending them with either return or return(True) as opposed to just nothing.
I assume there is no performance difference, and Python does not require the statements, but is there a general pythonic convention it is good to follow?
 
     
    