python: Reorder imports with isort

Related to T2610
This commit is contained in:
Antoine Lambert 2020-09-17 17:47:55 +02:00
parent d24846a957
commit 22f7181294
69 changed files with 136 additions and 168 deletions

View file

@ -4,8 +4,8 @@
def register():
from .models import PyPIModel
from .lister import PyPILister
from .models import PyPIModel
return {
"models": [PyPIModel],

View file

@ -4,16 +4,16 @@
# See top-level LICENSE file for more information
import random
from typing import Any, Dict
from requests import Response
import xmltodict
from .models import PyPIModel
from swh.scheduler import utils
from swh.lister.core.simple_lister import SimpleLister
from swh.lister.core.lister_transports import ListerOnePageApiTransport
from swh.lister.core.simple_lister import SimpleLister
from swh.scheduler import utils
from typing import Any, Dict
from requests import Response
from .models import PyPIModel
class PyPILister(ListerOnePageApiTransport, SimpleLister):