How to Install and Uninstall python38-autoflake Package on openSuSE Tumbleweed

Last updated: November 23,2024

1. Install "python38-autoflake" package

This tutorial shows how to install python38-autoflake on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python38-autoflake

2. Uninstall "python38-autoflake" package

In this section, we are going to explain the necessary steps to uninstall python38-autoflake on openSuSE Tumbleweed:

$ sudo zypper remove python38-autoflake

3. Information about the python38-autoflake package on openSuSE Tumbleweed

Information for package python38-autoflake:
-------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python38-autoflake
Version : 1.4-1.6
Arch : noarch
Vendor : openSUSE
Installed Size : 103,3 KiB
Installed : No
Status : not installed
Source package : python-autoflake-1.4-1.6.src
Summary : Program to removes unused Python imports and variables
Description :
Autoflake removes unused imports and unused variables from Python
code. It makes use of pyflakes to do this.
By default, autoflake only removes unused imports for modules that
are part of the standard library. (Other modules may have side
effects that make them unsafe to remove automatically.) Removal of
unused variables is also disabled by default.
autoflake also removes useless pass statements.