From 42e1d43163112f9aa785c6ad86335f6a1515c2b3 Mon Sep 17 00:00:00 2001 From: Dimitris Zlatanidis Date: Tue, 17 Jan 2023 20:21:42 +0200 Subject: [PATCH] Added __init__ --- slpkg/upgrade.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/slpkg/upgrade.py b/slpkg/upgrade.py index 3772f4ba..929d8fa5 100644 --- a/slpkg/upgrade.py +++ b/slpkg/upgrade.py @@ -10,6 +10,9 @@ from slpkg.dependencies import Requires class Upgrade(Utilities): """ Upgrade the installed packages. """ + def __init__(self): + super(Utilities, self).__init__() + def packages(self): """ Compares version of packages and returns the maximum. """ repo_packages = SBoQueries('').sbos()