From 6654c1358c97192295c9d4c16747e9f13a4e9815 Mon Sep 17 00:00:00 2001 From: Jesse Bannon Date: Wed, 17 May 2023 21:00:21 -0700 Subject: [PATCH] sadf --- src/ytdl_sub/plugins/regex.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/ytdl_sub/plugins/regex.py b/src/ytdl_sub/plugins/regex.py index c9219588..015580dd 100644 --- a/src/ytdl_sub/plugins/regex.py +++ b/src/ytdl_sub/plugins/regex.py @@ -257,16 +257,6 @@ class RegexPlugin(Plugin[RegexOptions]): def _contains_processed_regex_source_var(cls, entry: Entry, source_var: str) -> bool: return source_var in entry.kwargs_get(YTDL_SUB_REGEX_SOURCE_VARS, []) - def _record_source_vars_to_process(self, entry: Entry) -> None: - - entry.add_kwargs( - { - YTDL_SUB_REGEX_SOURCE_VARS: list( - self.plugin_options.source_variable_capture_dict.keys() - ) - } - ) - def _modify_entry_metadata(self, entry: Entry, is_metadata_stage: bool) -> Optional[Entry]: """ Parameters