Skip to content

Commit 4650469

Browse files
committed
chore(ruff): format setup.py imports.
1 parent 33e009d commit 4650469

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

setup.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@
1818
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1919
#
2020

21-
2221
from __future__ import print_function
23-
from roundup.dist.command.build_doc import build_doc
24-
from roundup.dist.command.build import build, list_message_files
25-
from roundup.dist.command.bdist_rpm import bdist_rpm
26-
from roundup.dist.command.install_lib import install_lib
27-
28-
from setuptools import setup
2922

23+
import os
24+
import sys
25+
from glob import glob
3026
from sysconfig import get_path
3127

32-
import sys, os
33-
from glob import glob
28+
from setuptools import setup
29+
30+
from roundup.dist.command.bdist_rpm import bdist_rpm
31+
from roundup.dist.command.build import build, list_message_files
32+
from roundup.dist.command.build_doc import build_doc
33+
from roundup.dist.command.install_lib import install_lib
3434

3535

3636
def include(d, e):

0 commit comments

Comments
 (0)