summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorBenjamin Schubert <contact@benschubert.me>2020-07-03 11:33:17 +0100
committerBenjamin Schubert <contact@benschubert.me>2020-07-03 11:46:29 +0100
commit2833a6abd562a628f4039e74a1dadf12661d2b6d (patch)
tree874362f70d15e42babc6f9c578d6822b8efee0f8 /setup.py
parent94dcc28121a57f5e292ce653ef4b760a7ad3b6a4 (diff)
downloadbuildstream-bschubert/isort.tar.gz
setup.cfg: Use isort to sort our importsbschubert/isort
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index c300d33e9..f09539f93 100755
--- a/setup.py
+++ b/setup.py
@@ -20,13 +20,13 @@
# Benjamin Schubert <bschubert15@bloomberg.net>
import os
-from pathlib import Path
import re
import sys
+from pathlib import Path
# Add local directory to the path, in order to be able to import versioneer
sys.path.append(os.path.dirname(__file__))
-import versioneer # pylint: disable=wrong-import-position
+import versioneer # isort:skip
##################################################################