python: Reorder imports with isort
Related to T2610
This commit is contained in:
parent
d24846a957
commit
22f7181294
69 changed files with 136 additions and 168 deletions
|
@ -4,8 +4,8 @@
|
|||
|
||||
|
||||
def register():
|
||||
from .models import PyPIModel
|
||||
from .lister import PyPILister
|
||||
from .models import PyPIModel
|
||||
|
||||
return {
|
||||
"models": [PyPIModel],
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue