# HG changeset patch # User Laurent Peuch <cortex@worlddomination.be> # Date 1649195633 -7200 # Tue Apr 05 23:53:53 2022 +0200 # Node ID 822d5bf2437dd1af6baf76339052e3134cd6cad3 # Parent ac2376460a1dbbf1e683bd4721a3d259037b0cde fix: please flake8 on the ci diff --git a/cubicweb_squareui/views/basetemplates.py b/cubicweb_squareui/views/basetemplates.py --- a/cubicweb_squareui/views/basetemplates.py +++ b/cubicweb_squareui/views/basetemplates.py @@ -202,7 +202,7 @@ @monkeypatch(basetemplates.HTMLPageHeader) # noqa: F811 -def call(self, view, **kwargs): +def call(self, view, **kwargs): # noqa: F811 self.main_header(view) self.breadcrumbs(view) @@ -281,7 +281,7 @@ @monkeypatch(basetemplates.HTMLContentFooter) # noqa: F811 -def call(self, view, **kwargs): +def call(self, view, **kwargs): # noqa: F811 components = self._cw.vreg['ctxcomponents'].poss_visible_objects( self._cw, rset=self.cw_rset, view=view, context='navbottom') if components: @@ -293,7 +293,7 @@ @monkeypatch(basetemplates.HTMLPageFooter) # noqa: F811 -def call(self, **kwargs): +def call(self, **kwargs): # noqa: F811 self.w(u'<footer id="pagefooter" role="contentinfo">') self.footer_content() self.w(u'</footer>\n')