3f98562 initialize self.errors in run()

Authored and Committed by nphilipp 4 years ago
    initialize self.errors in run()
    
    Initializing it to a (default)dict could cause problems if several
    instances are used. We don't do that at the moment, but it's bad
    practice to initialize class members to mutable data types which aren't
    supposed to be shared between instances.
    
    Signed-off-by: Nils Philippsen <nils@redhat.com>