diff options
author | Damir Jelić <poljar@termina.org.uk> | 2019-06-18 13:52:02 +0200 |
---|---|---|
committer | Damir Jelić <poljar@termina.org.uk> | 2019-06-18 13:52:02 +0200 |
commit | 9faa100c6a911ed18e85017b6e9005ad28a9ae2c (patch) | |
tree | fffd9f45762a7e032fd3c1650ee72218391eeff7 /python/Makefile | |
parent | 2f5590bf38e5995a36f770c04cfbf31eb9070eca (diff) |
Makefile: Add an isort target.
Diffstat (limited to 'python/Makefile')
-rw-r--r-- | python/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/Makefile b/python/Makefile index e4d0611..16f9823 100644 --- a/python/Makefile +++ b/python/Makefile @@ -43,6 +43,9 @@ test: olm-python2 olm-python3 PYTHONPATH=install-temp/3 python3 -m pytest --cov --cov-branch --benchmark-disable rm -rf install-temp +isort: + isort -y -p olm + clean: rm -rf python_olm.egg-info/ dist/ __pycache__/ rm -rf *.so _libolm.o |