How to Install and Uninstall python3-autoflake Package on openSUSE Leap

Last updated: May 07,2024

1. Install "python3-autoflake" package

Please follow the guidance below to install python3-autoflake on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python3-autoflake

2. Uninstall "python3-autoflake" package

Here is a brief guide to show you how to uninstall python3-autoflake on openSUSE Leap:

$ sudo zypper remove python3-autoflake

3. Information about the python3-autoflake package on openSUSE Leap

Information for package python3-autoflake:
------------------------------------------
Repository : Main Repository
Name : python3-autoflake
Version : 1.3.1-bp155.2.11
Arch : noarch
Vendor : openSUSE
Installed Size : 82.7 KiB
Installed : No
Status : not installed
Source package : python-autoflake-1.3.1-bp155.2.11.src
Upstream URL : https://github.com/myint/autoflake
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.