Reorder imports in hotmart.py

This commit reorders the imports in hotmart.py according to PEP8 guidelines for improved readability.
This commit is contained in:
Abdessamad DERRAZ 2023-07-22 02:13:09 +02:00
parent bee20eeb82
commit e7f90d887d
1 changed files with 3 additions and 2 deletions

View File

@ -1,3 +1,6 @@
import json
import urllib.request
from .common import InfoExtractor
from ..utils import (
get_element_by_id,
@ -5,8 +8,6 @@ from ..utils import (
int_or_none,
url_or_none,
)
import urllib.request
import json
class TeachableAPI: