Skip to content

Commit b61eb56

Browse files
committed
Ran yapf formatter
1 parent 4764f3e commit b61eb56

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

labelbox/client.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1584,7 +1584,9 @@ def unarchive_feature_schema_node(self, ontology_id: str,
15841584
Returns:
15851585
bool
15861586
"""
1587-
ontology_endpoint = self.rest_endpoint + "/ontologies/" + urllib.parse.quote(ontology_id) + '/feature-schemas/' + urllib.parse.quote(root_feature_schema_id) + '/unarchive'
1587+
ontology_endpoint = self.rest_endpoint + "/ontologies/" + urllib.parse.quote(
1588+
ontology_id) + '/feature-schemas/' + urllib.parse.quote(
1589+
root_feature_schema_id) + '/unarchive'
15881590
response = requests.patch(
15891591
ontology_endpoint,
15901592
headers=self.headers,
@@ -1593,7 +1595,8 @@ def unarchive_feature_schema_node(self, ontology_id: str,
15931595
return response.json()['unarchived']
15941596
else:
15951597
raise labelbox.exceptions.LabelboxError(
1596-
"Failed unarchive root feature schema node, message: ", response.text)
1598+
"Failed unarchive root feature schema node, message: ",
1599+
response.text)
15971600

15981601
def get_model_slice(self, slice_id) -> ModelSlice:
15991602
"""

0 commit comments

Comments
 (0)