Skip to content

Commit

Permalink
fixed Bad super call in "contexts.py" bokeh#10536
Browse files Browse the repository at this point in the history
  • Loading branch information
sawamoha20 committed Oct 4, 2020
1 parent 0846e85 commit 4402b3a
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 4402b3a

Please sign in to comment.