isort test
This commit is contained in:
parent
69fb7990d8
commit
cd724aa3d5
2 changed files with 2 additions and 2 deletions
2
.github/workflows/linter.yml
vendored
2
.github/workflows/linter.yml
vendored
|
|
@ -18,6 +18,6 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install .[lint]
|
pip install .[lint]
|
||||||
- name: Analysing the code with pylint
|
- name: Run linters
|
||||||
run: |
|
run: |
|
||||||
./tools/linter
|
./tools/linter
|
||||||
|
|
|
||||||
|
|
@ -3,11 +3,11 @@ from abc import ABC
|
||||||
from contextlib import contextmanager
|
from contextlib import contextmanager
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import Dict
|
from typing import Dict
|
||||||
|
from typing import TypeVar
|
||||||
from typing import Generic
|
from typing import Generic
|
||||||
from typing import List
|
from typing import List
|
||||||
from typing import Optional
|
from typing import Optional
|
||||||
from typing import Type
|
from typing import Type
|
||||||
from typing import TypeVar
|
|
||||||
|
|
||||||
import yt_dlp as ytdl
|
import yt_dlp as ytdl
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue