Skip to content

Commit 28c8593

Browse files
committed
chore(formatting): 🔧 black formatting fixed
Signed-off-by: Onuralp SEZER <[email protected]>
1 parent 6c48f31 commit 28c8593

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

roboflow/__init__.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff 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)):

0 commit comments

Comments
 (0)