It\'s very common in C: hacking \'empty if statement\' like this:
if(mostlyhappencondition) ;#empty statement else{ dosomething; }
Till the time you dont have any thing in if True: you could do
if True:
if not mostlyhappenedcondition: do something()
If you dont have to put any thing in "if" even in future, then it is redundunt in your code.