>            enemyship_sprites.add(Enemy((cols*60)+20, (rows*40)+30),
level)

Check your parens... The closing one after 30 closes the constructor
list.
level is outside so you effectively have

sprites.add(Enemy(X,Y), level)

HTH,

Alan G.

_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to