Skip to content

Commit

Permalink
patch
Browse files Browse the repository at this point in the history
  • Loading branch information
lbr38 committed Sep 5, 2024
1 parent dd420ff commit 92d11b3
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions src/controllers/Package/Package.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def get_installed_packages(self):
def get_available_packages(self, dist_upgrade: bool = False):
try:
# Update package manager cache
self.myPackageManagerController.update_cache()
# self.myPackageManagerController.update_cache()

# Get a list of available packages
return self.myPackageManagerController.get_available_packages(dist_upgrade)
Expand Down Expand Up @@ -309,12 +309,3 @@ def get_history(self, order):
#-----------------------------------------------------------------------------------------------
def parse_history(self, entries, entries_limit):
return self.myPackageManagerController.parse_history(entries, entries_limit)


#-----------------------------------------------------------------------------------------------
#
# Update package manager cache
#
#-----------------------------------------------------------------------------------------------
def update_cache(self):
self.myPackageManagerController.update_cache()

0 comments on commit 92d11b3

Please sign in to comment.