Sort commits using isort

Also added lint test to ensure they stay sorted.
This commit is contained in:
Simon Willison 2019-06-23 22:04:00 -07:00
commit ecae805d37
40 changed files with 208 additions and 141 deletions

View file

@ -1,7 +1,8 @@
from setuptools import setup, find_packages
import os
import sys
from setuptools import find_packages, setup
import versioneer
@ -62,6 +63,7 @@ setup(
"aiohttp==3.5.3",
"beautifulsoup4==4.6.1",
"asgiref==3.1.2",
"isort==4.3.20",
]
+ maybe_black
},