You need to add the argument list (empty in your case) after the class name to properly instantiate it. In many languages this step is referred as calling the constructor.
enemy1 = Enemy()
With this, your code works fine.