diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-08-23 00:49:23 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-08-23 01:04:29 +0530 |
commit | 3fb4e21b38063d22b421e45b9bb24f707654c111 (patch) | |
tree | 30f24043b778949cd3d1825b44b23db8a6cb4583 /devscripts/lazy_load_template.py | |
parent | 4dfbf8696b0c614eee480b44a86959b9a055fb97 (diff) | |
download | hypervideo-pre-3fb4e21b38063d22b421e45b9bb24f707654c111.tar.lz hypervideo-pre-3fb4e21b38063d22b421e45b9bb24f707654c111.tar.xz hypervideo-pre-3fb4e21b38063d22b421e45b9bb24f707654c111.zip |
[lazy_extractors] Fix `suitable` and add flake8 test
Diffstat (limited to 'devscripts/lazy_load_template.py')
-rw-r--r-- | devscripts/lazy_load_template.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/devscripts/lazy_load_template.py b/devscripts/lazy_load_template.py index d06655d10..20322e04b 100644 --- a/devscripts/lazy_load_template.py +++ b/devscripts/lazy_load_template.py @@ -8,10 +8,6 @@ import re class LazyLoadExtractor(object): _module = None - @classmethod - def ie_key(cls): - return cls.__name__[:-2] - def __new__(cls, *args, **kwargs): mod = __import__(cls._module, fromlist=(cls.__name__,)) real_cls = getattr(mod, cls.__name__) |