File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -165,7 +165,8 @@ class PlotlyLocalError(PlotlyError):
165
165
166
166
class PlotlyLocalCredentialsError (PlotlyLocalError ):
167
167
def __init__ (self ):
168
- message = ("\n "
168
+ message = (
169
+ "\n "
169
170
"Couldn't find a 'username', 'api-key' pair for you on your local "
170
171
"machine. To sign in temporarily (until you stop running Python), "
171
172
"run:\n "
@@ -174,8 +175,10 @@ def __init__(self):
174
175
"Even better, save your credentials permanently using the 'tools' "
175
176
"module:\n "
176
177
">>> import plotly.tools as tls\n "
177
- ">>> tls.set_credentials_file(username='username', api_key='api-key')\n \n "
178
- "For more help, see https://plot.ly/python.\n " )
178
+ ">>> tls.set_credentials_file(username='username', "
179
+ "api_key='api-key')\n \n "
180
+ "For more help, see https://plot.ly/python.\n "
181
+ )
179
182
super (PlotlyLocalCredentialsError , self ).__init__ (message )
180
183
181
184
You can’t perform that action at this time.
0 commit comments