File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -350,18 +350,18 @@ def install_pack(self, identifier: str | Path) -> None:
350350
351351 def print_info (self ) -> None :
352352 """Print information about available packs and examples."""
353- uninstall_packs = []
353+ uninstalled_packs = []
354354 installed_packs = []
355355 for pack in self .available_packs ():
356356 if self .check_pack (pack ):
357357 installed_packs .append (pack )
358358 else :
359- uninstall_packs .append (pack )
359+ uninstalled_packs .append (pack )
360360 print ("Installed Packs:" )
361361 for pack in installed_packs :
362362 print (f" { pack } " )
363363 print ("\n Available Packs to Install:" )
364- for pack in uninstall_packs :
364+ for pack in uninstalled_packs :
365365 print (f" { pack } " )
366366 print ("\n Examples:" )
367367 examples_dict = self .available_examples ()
You can’t perform that action at this time.
0 commit comments