File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -226,8 +226,8 @@ def set_config_file(plotly_domain=None,
226
226
ensure_local_plotly_files () # make sure what we just put there is OK
227
227
228
228
229
- def get_config_file (** kwargs ):
230
- """Return specified args from `~/.plotly/.config`. as dict .
229
+ def get_config_file (* args ):
230
+ """Return specified args from `~/.plotly/.config`. as tuple .
231
231
232
232
Returns all if no arguments are specified.
233
233
@@ -237,7 +237,7 @@ def get_config_file(**kwargs):
237
237
"""
238
238
if _file_permissions :
239
239
ensure_local_plotly_files () # make sure what's there is OK
240
- return utils .load_json_dict (CONFIG_FILE , ** kwargs )
240
+ return utils .load_json_dict (CONFIG_FILE , * args )
241
241
else :
242
242
return _FILE_CONTENT [CONFIG_FILE ]
243
243
You can’t perform that action at this time.
0 commit comments