requirements: Upgrade Python requirements.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2022-07-05 13:14:19 -07:00
committed by Tim Abbott
parent 6c79b8f2f1
commit feff1d0411
13 changed files with 1245 additions and 1168 deletions

View File

@@ -31,7 +31,7 @@ class IncludeBlockProcessor(BlockProcessor):
super().__init__(parser)
self.base_path = base_path
def test(self, parent: Element, block: str) -> bool: # type: ignore[override] # https://github.com/python/typeshed/pull/8166
def test(self, parent: Element, block: str) -> bool:
return bool(self.RE.search(block))
def expand_include(self, m: Match[str]) -> str: