diff options
author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2023-04-20 09:53:24 +0100 |
---|---|---|
committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2023-04-20 09:53:24 +0100 |
commit | 870268f0c57d483c0066fff661db01c33f6c3614 (patch) | |
tree | 5109ec7f0f25fbd3247332a3c185ab7489830d9c | |
parent | 7f2bfb34210dc2ad13f1a6e8681ee1a460c221f8 (diff) | |
download | python-setuptools-git-870268f0c57d483c0066fff661db01c33f6c3614.tar.gz |
Fix flake8 problem
-rw-r--r-- | setuptools/py312compat.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/setuptools/py312compat.py b/setuptools/py312compat.py index a17d5aec..dd5af58e 100644 --- a/setuptools/py312compat.py +++ b/setuptools/py312compat.py @@ -1,6 +1,7 @@ import sys import shutil + def shutil_rmtree(path, ignore_errors=False, onexc=None): if sys.version_info >= (3, 12): return shutil.rmtree(path, ignore_errors, onexc=onexc) |