From 3fb4e21b38063d22b421e45b9bb24f707654c111 Mon Sep 17 00:00:00 2001 From: pukkandan Date: Mon, 23 Aug 2021 00:49:23 +0530 Subject: [lazy_extractors] Fix `suitable` and add flake8 test --- devscripts/lazy_load_template.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'devscripts/lazy_load_template.py') 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__) -- cgit v1.2.3