File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,8 @@ def login(workspace=None, force=False):
8787
8888 if os .path .isfile (conf_location ) and not force :
8989 write_line (
90- "You are already logged into Roboflow. To make a different login, run roboflow.login(force=True)."
90+ "You are already logged into Roboflow. To make a different login,"
91+ "run roboflow.login(force=True)."
9192 )
9293 return None
9394 # we could eventually return the workspace object here
@@ -115,8 +116,9 @@ def login(workspace=None, force=False):
115116 if r_login .status_code == 200 :
116117 r_login = r_login .json ()
117118 if r_login is None :
118- raise ValueError ("Invalid API key. "
119- "Please check your API key and try again." )
119+ raise ValueError (
120+ "Invalid API key. " "Please check your API key and try again."
121+ )
120122
121123 # make config directory if it doesn't exist
122124 if not os .path .exists (os .path .dirname (conf_location )):
You can’t perform that action at this time.
0 commit comments