From 10d3c6c325090172d5dc1cb99c5ce8a9319d88b2 Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Sun, 18 Oct 2020 00:25:09 -0700 Subject: [PATCH] Remove bad namedtuple to fix CI (#4684) Co-authored-by: hauntsaninja <> --- third_party/2and3/markdown/util.pyi | 2 -- 1 file changed, 2 deletions(-) diff --git a/third_party/2and3/markdown/util.pyi b/third_party/2and3/markdown/util.pyi index 170fadf43..66a6d7adf 100644 --- a/third_party/2and3/markdown/util.pyi +++ b/third_party/2and3/markdown/util.pyi @@ -40,8 +40,6 @@ class HtmlStash: def get_placeholder(self, key): ... def store_tag(self, tag, attrs, left_index, right_index): ... -_PriorityItem = namedtuple("PriorityItem", ["name", "priority"]) - class Registry: def __init__(self) -> None: ... def __contains__(self, item): ...