We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f61f85 commit 40a37b3Copy full SHA for 40a37b3
jupyter_server_proxy/handlers.py
@@ -654,9 +654,7 @@ def _render_template(self, value):
654
def _realize_rendered_template(self, attribute):
655
"""Call any callables, then render any templated values."""
656
if callable(attribute):
657
- attribute = self._render_template(
658
- call_with_asked_args(attribute, self.process_args)
659
- )
+ attribute = call_with_asked_args(attribute, self.process_args)
660
return self._render_template(attribute)
661
662
@web.authenticated
0 commit comments