Lint after merge

This commit is contained in:
pukkandan 2022-12-22 02:03:51 +05:30
commit 29e7494495
No known key found for this signature in database
GPG key ID: 7EEE9E1E817D0A39
3 changed files with 7 additions and 16 deletions

View file

@ -1,13 +1,13 @@
repos:
- repo: https://github.com/pycqa/isort
rev: 5.10.1
rev: v5.11.3
hooks:
- id: isort
- repo: https://github.com/pre-commit/mirrors-autopep8
rev: v2.0.0
rev: v2.0.1
hooks:
- id: autopep8
- repo: https://github.com/PyCQA/flake8
rev: 5.0.4
rev: 6.0.0
hooks:
- id: flake8

View file

@ -597,10 +597,7 @@ from .parliamentliveuk import ParliamentLiveUKIE
from .patreon import PatreonIE
from .pbs import PBSIE
from .pearvideo import PearVideoIE
from .peekvids import (
PeekVidsIE,
PlayVidsIE,
)
from .peekvids import PeekVidsIE, PlayVidsIE
from .peertube import PeerTubeIE
from .people import PeopleIE
from .performgroup import PerformGroupIE
@ -836,11 +833,7 @@ from .theweatherchannel import TheWeatherChannelIE
from .thisamericanlife import ThisAmericanLifeIE
from .thisav import ThisAVIE
from .thisoldhouse import ThisOldHouseIE
from .thisvid import (
ThisVidIE,
ThisVidMemberIE,
ThisVidPlaylistIE,
)
from .thisvid import ThisVidIE, ThisVidMemberIE, ThisVidPlaylistIE
from .threeqsdn import ThreeQSDNIE
from .tiktok import TikTokIE, TikTokUserIE
from .tinypic import TinyPicIE

View file

@ -1,13 +1,11 @@
# coding: utf-8
from __future__ import unicode_literals
import re
import itertools
import re
from .common import InfoExtractor
from ..compat import (
compat_urlparse,
)
from ..compat import compat_urlparse
from ..utils import (
clean_html,
get_element_by_class,