How to Install and Uninstall python3-usort.noarch Package on Fedora 34

Last updated: May 03,2024

1. Install "python3-usort.noarch" package

In this section, we are going to explain the necessary steps to install python3-usort.noarch on Fedora 34

$ sudo dnf update $ sudo dnf install python3-usort.noarch

2. Uninstall "python3-usort.noarch" package

Please follow the step by step instructions below to uninstall python3-usort.noarch on Fedora 34:

$ sudo dnf remove python3-usort.noarch $ sudo dnf autoremove

3. Information about the python3-usort.noarch package on Fedora 34

Last metadata expiration check: 1:16:50 ago on Tue Sep 6 08:10:37 2022.
Available Packages
Name : python3-usort
Version : 0.6.3
Release : 2.fc34
Architecture : noarch
Size : 35 k
Source : python-usort-0.6.3-2.fc34.src.rpm
Repository : fedora
Summary : A small, safe import sorter
URL : https://github.com/facebookexperimental/usort
License : MIT
Description :
: μsort is a safe, minimal import sorter. Its primary goal is to make no
: "dangerous" changes to code, and to make no changes on code style. This is
: achieved by detecting distinct "blocks" of imports that are the most likely to
: be safely interchangeable, and only reordering imports within these blocks
: without altering formatting. Code style is left as an exercise for linters and
: formatters.