fix: linting error (#1920)

This commit is contained in:
Cyril Chapellier 2023-05-24 01:06:46 +02:00 committed by GitHub
parent 421fd98a9c
commit 933860ee8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
from datetime import timedelta
from rq import Queue, Worker
from rq.job import Job, JobStatus, UNEVALUATED
from rq.job import UNEVALUATED, Job, JobStatus
from rq.serializers import JSONSerializer
from rq.worker import SimpleWorker
from tests import RQTestCase