You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An example of the scenario: from scrapy.core.downloader.handlers.http import HttpDownloadHandler, HTTPDownloadHandler
Isort applied on a file containing such an import will keep interchanging the names
(HttpDownloadHandler, HTTPDownloadHandler OR HTTPDownloadHandler, HttpDownloadHandler)
when an isort --check-only is applied on such a file it fails randomly.
The text was updated successfully, but these errors were encountered:
An example of the scenario:
from scrapy.core.downloader.handlers.http import HttpDownloadHandler, HTTPDownloadHandler
Isort applied on a file containing such an import will keep interchanging the names
(
HttpDownloadHandler, HTTPDownloadHandler
ORHTTPDownloadHandler, HttpDownloadHandler
)when an isort --check-only is applied on such a file it fails randomly.
The text was updated successfully, but these errors were encountered: