I am editing an texture exporter that somebody else coded, and there's a small segment I'm not grasping.
The exporter has a QListView that get's filled with groups from photoshop.

I had removed a part of the code that I thought was purely for debuging, but then I noticed that I started to get duplicate entries in the list. Here:
Qt Code:
  1. if layerName in loadedNames:
  2. print layerName, " IS ALREADY LOADED"
  3. continue
  4.  
  5. if layerName.endswith("_alpha") or layerName.endswith("_a"):
  6. print "SUPPOSED TO MOVE INTO ALPHA"
  7. continue
To copy to clipboard, switch view to plain text mode 
All I see is it printing messages to the console. The if's don't do anything else... Perhaps the issue here is that I don't understand how continue works. I thought it was just something people wrote for clarity, and to avoid nesting if statements. Any ideas?