Thanks to visit codestin.com Credit goes to github.com
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 4466cb7 commit d5fb77dCopy full SHA for d5fb77d
plotly/plotly/plotly.py
@@ -111,7 +111,7 @@ def _plot_option_logic(plot_options_from_call_signature):
111
user_plot_options.update(file_options)
112
user_plot_options.update(session_options)
113
user_plot_options.update(plot_options_from_call_signature)
114
- user_plot_options = {k: v for k, v in user_plot_options
+ user_plot_options = {k: v for k, v in user_plot_options.items
115
if k in default_plot_options}
116
117
return user_plot_options
0 commit comments