Skip to content

Commit

Permalink
Fix super-call, fixes bokeh#10536
Browse files Browse the repository at this point in the history
  • Loading branch information
nils-werner committed Oct 15, 2020
1 parent bf555e9 commit fc13cc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bokeh/server/contexts.py
Expand Up @@ -340,7 +340,7 @@ def __getattr__(self, name):
val = getattr(self._request, name, None)
if val is not None:
return val
return super.__getattr__(name)
return super().__getattr__(name)

#-----------------------------------------------------------------------------
# Code
Expand Down

0 comments on commit fc13cc6

Please sign in to comment.