hasgeek / funnel

Re-definition found for builtin function PYL-W0622
Anti-pattern
Major
1 occurrence in this check
Redefining built-in 'map'
254
255    # pylint: disable=redefined-builtin
256    def format_map(
257        self, map: Mapping[str, Any]  # type: ignore[override]  # noqa: A002258    ) -> Self:
259        formatter = _MarkdownEscapeFormatter(self.escape)
260        return self.__class__(formatter.vformat(self, (), map))